V0.2.0: Cloak of Shadows now properly stores exp over save/load
This commit is contained in:
parent
b3b39bdbb2
commit
4721a9476c
|
@ -228,6 +228,7 @@ public class CloakOfShadows extends Artifact {
|
||||||
super.storeInBundle(bundle);
|
super.storeInBundle(bundle);
|
||||||
bundle.put("stealthed", stealthed);
|
bundle.put("stealthed", stealthed);
|
||||||
bundle.put("cooldown", cooldown);
|
bundle.put("cooldown", cooldown);
|
||||||
|
bundle.put("exp", exp);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -235,5 +236,6 @@ public class CloakOfShadows extends Artifact {
|
||||||
super.restoreFromBundle(bundle);
|
super.restoreFromBundle(bundle);
|
||||||
stealthed = bundle.getBoolean("stealthed");
|
stealthed = bundle.getBoolean("stealthed");
|
||||||
cooldown = bundle.getInt("cooldown");
|
cooldown = bundle.getInt("cooldown");
|
||||||
|
exp = bundle.getInt("exp");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user