V0.2.0: ...further corrected Chalice Logic & artifact logic

This commit is contained in:
Evan Debenham
2014-09-08 01:12:36 -04:00
parent b91ed818ce
commit 20b59a372d
2 changed files with 4 additions and 2 deletions
@@ -167,6 +167,7 @@ public class Artifact extends KindofMisc {
@Override
public void storeInBundle( Bundle bundle ) {
super.storeInBundle(bundle);
bundle.put( "exp", exp );
bundle.put( "charge", charge );
bundle.put( "partialcharge", partialCharge);
@@ -174,6 +175,7 @@ public class Artifact extends KindofMisc {
@Override
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle(bundle);
exp = bundle.getInt("exp");
charge = bundle.getInt("charge");
partialCharge = bundle.getFloat("partialcharge");