From e03988defe5ec5a144dbb67f60a17468aba3361b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 25 Dec 2015 17:14:52 -0500 Subject: [PATCH] v0.3.3b: fixed crashes with sandals of nature --- .../shatteredpixeldungeon/items/artifacts/SandalsOfNature.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java index 1e9e9e6f4..97515c819 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/SandalsOfNature.java @@ -183,7 +183,7 @@ public class SandalsOfNature extends Artifact { @Override public void restoreFromBundle( Bundle bundle ) { super.restoreFromBundle(bundle); - name = NAMES[level()+1]; + name = NAMES[level()]; if (bundle.contains(SEEDS)) Collections.addAll(seeds , bundle.getStringArray(SEEDS)); }