diff options
Diffstat (limited to 'src/jake2/game/edict_t.java')
-rw-r--r-- | src/jake2/game/edict_t.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/jake2/game/edict_t.java b/src/jake2/game/edict_t.java index 0c89c87..229b18b 100644 --- a/src/jake2/game/edict_t.java +++ b/src/jake2/game/edict_t.java @@ -26,7 +26,6 @@ import jake2.util.*; public class edict_t { public edict_t(int i) { - s.number = i; index = i; } @@ -67,13 +66,13 @@ public class edict_t { public int movetype; public int flags; - public String model = ""; + public String model = null; public float freetime; // sv.time when the object was freed // // only used locally in game, not by server // - public String message = ""; + public String message = null; public String classname = ""; public int spawnflags; |