diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java index ccd390605..1e9e9e6f4 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java @@ -177,14 +177,13 @@ public class SandalsOfNature extends Artifact { @Override public void storeInBundle( Bundle bundle ) { super.storeInBundle(bundle); - bundle.put(NAME, name); bundle.put(SEEDS, seeds.toArray(new String[seeds.size()])); } @Override public void restoreFromBundle( Bundle bundle ) { super.restoreFromBundle(bundle); - name = bundle.getString( NAME ); + name = NAMES[level()+1]; if (bundle.contains(SEEDS)) Collections.addAll(seeds , bundle.getStringArray(SEEDS)); }