Jaffa, O'Neill and Replicator now inicialized as null.

Bypassing purrpurr errors, the default value of these attributes is null.
This commit is contained in:
ericnerdo 2016-05-14 14:13:27 +02:00
parent 2b81b8ae03
commit 55cae38f5f

View File

@ -7,10 +7,10 @@ import java.io.IOException;
import java.util.Map; import java.util.Map;
public class Game { public class Game {
private Player oneill; private Player oneill = null;
private Player jaffa; private Player jaffa = null;
private PlayerBase replicator; private PlayerBase replicator = null;
private Dungeon dungeon; private Dungeon dungeon;
private FlowOfTime flowoftime; private FlowOfTime flowoftime;