From 0c662aeae8bb544d7be97c3f9dddf324e38c9f45 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <jwalto@essex.ac.uk> Date: Thu, 11 Jun 2015 15:22:22 +0100 Subject: [PATCH] ok, this should fix the thing which I didn't fix before (cloning frames) --- src/battle/SimpleBattle.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/battle/SimpleBattle.java b/src/battle/SimpleBattle.java index cd717ec..589d3b4 100644 --- a/src/battle/SimpleBattle.java +++ b/src/battle/SimpleBattle.java @@ -41,8 +41,13 @@ public class SimpleBattle { int currentTick; public SimpleBattle() { + this(true); + } + + public SimpleBattle(boolean visible) { this.objects = new ArrayList<>(); this.stats = new ArrayList<>(); + this.visible = visible; if (visible) { view = new BattleView(this); @@ -126,7 +131,7 @@ public class SimpleBattle { public SimpleBattle clone() { - SimpleBattle state = new SimpleBattle(); + SimpleBattle state = new SimpleBattle(false); state.objects = copyObjects(); state.stats = copyStats(); state.currentTick = currentTick; -- GitLab