V0.2.0: Cloak of Shadows now properly stores exp over save/load

This commit is contained in:
Evan Debenham 2014-08-30 18:27:57 -04:00
parent b3b39bdbb2
commit 4721a9476c

View File

@ -228,6 +228,7 @@ public class CloakOfShadows extends Artifact {
super.storeInBundle(bundle);
bundle.put("stealthed", stealthed);
bundle.put("cooldown", cooldown);
bundle.put("exp", exp);
}
@Override
@ -235,5 +236,6 @@ public class CloakOfShadows extends Artifact {
super.restoreFromBundle(bundle);
stealthed = bundle.getBoolean("stealthed");
cooldown = bundle.getInt("cooldown");
exp = bundle.getInt("exp");
}
}