DEADSOFTWARE

Add crippled survival
[cavedroid.git] / core / src / ru / deadsoftware / cavedroid / game / mobs / Player.java
index ebdd9c0dbed6281204809267f6ed0997f270925b..34232f705e7e3fdf4303b6db6ecd16488de2c061 100644 (file)
@@ -26,13 +26,12 @@ public class Player extends Mob {
 
     public final int[] inventory;
     public int slot;
-    public final int gameMode;
+    public int gameMode;
     public boolean swim;
     public float headRotation = 0f;
 
     public Player() {
         super(0, 0, 4, 30, randomDir(), Type.MOB, MAX_HEALTH);
-        this.gameMode = 1;
         inventory = new int[9];
         swim = false;
     }