From 8e2f0c0a3729ee9a571f36ec52b0e0ea6ceb3e71 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 26 May 2015 09:58:07 -0400 Subject: [PATCH] v0.3.0: changed mimic load order in order to prevent save/load healing mimics --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java index 32f05f74d..cb7aec6f3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Mimic.java @@ -64,9 +64,9 @@ public class Mimic extends Mob { @SuppressWarnings("unchecked") @Override public void restoreFromBundle( Bundle bundle ) { - super.restoreFromBundle( bundle ); items = new ArrayList( (Collection) ((Collection) bundle.getCollection( ITEMS ) )); adjustStats( bundle.getInt( LEVEL ) ); + super.restoreFromBundle(bundle); } @Override