From aa591d7c710fe496e6d1efc15ab529ef0f8e3f1d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 8 Sep 2014 01:06:24 -0400 Subject: [PATCH] V0.2.0: correct string mismatch --- .../shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java index c78fba86e..c7759642c 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -113,9 +113,9 @@ public class ChaliceOfBlood extends Artifact { } else { level++; if (level >= 5) - image = ItemSpriteSheet.ARTIFACT_CHALICE2; - else if (level >= 3) image = ItemSpriteSheet.ARTIFACT_CHALICE3; + else if (level >= 3) + image = ItemSpriteSheet.ARTIFACT_CHALICE2; } }