From 55cae38f5f2c08a501540d7375d8690e086cc3e5 Mon Sep 17 00:00:00 2001 From: ericnerdo Date: Sat, 14 May 2016 14:13:27 +0200 Subject: [PATCH] Jaffa, O'Neill and Replicator now inicialized as null. Bypassing purrpurr errors, the default value of these attributes is null. --- cicaprojekt/Game.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cicaprojekt/Game.java b/cicaprojekt/Game.java index d6d6c07..f98d246 100644 --- a/cicaprojekt/Game.java +++ b/cicaprojekt/Game.java @@ -7,10 +7,10 @@ import java.io.IOException; import java.util.Map; public class Game { - private Player oneill; - private Player jaffa; + private Player oneill = null; + private Player jaffa = null; - private PlayerBase replicator; + private PlayerBase replicator = null; private Dungeon dungeon; private FlowOfTime flowoftime;