aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/MylesAndMore/tumble/Game.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/com/MylesAndMore/tumble/Game.java b/src/main/java/com/MylesAndMore/tumble/Game.java
index 2161e2f..0f54021 100644
--- a/src/main/java/com/MylesAndMore/tumble/Game.java
+++ b/src/main/java/com/MylesAndMore/tumble/Game.java
@@ -1,6 +1,5 @@
package com.MylesAndMore.tumble;
-import com.MylesAndMore.tumble.TumbleManager;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.Location;
@@ -18,7 +17,7 @@ public final class Game {
// Private Game() constructor for singleton instance
private Game() { }
- // Other priate methods for getters and setters go here
+ // Other private methods for getters and setters go here
// Define local game vars
// The gameType keeps the current game type (shocker)
@@ -82,7 +81,6 @@ public final class Game {
}
-
// Public method to get the game instance (singleton logic)
public static Game getGame() {
if (gameInstance == null) {