From e2ad549f7d7ebdacbd6d71499870be866c95d1f8 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 2 Feb 2018 00:04:38 -0500 Subject: [PATCH] v0.6.3: corrected the item sprite sheet value for wand of corrosion --- .../shatteredpixeldungeon/items/wands/WandOfCorrosion.java | 2 +- .../shatteredpixeldungeon/sprites/ItemSpriteSheet.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorrosion.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorrosion.java index 2208c65b8..fc4187ba9 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorrosion.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorrosion.java @@ -45,7 +45,7 @@ import com.watabou.utils.Random; public class WandOfCorrosion extends Wand { { - image = ItemSpriteSheet.WAND_VENOM; + image = ItemSpriteSheet.WAND_CORROSION; collisionProperties = Ballistica.STOP_TARGET | Ballistica.STOP_TERRAIN; } diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java index 8585ac568..8fb76f12d 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java @@ -291,7 +291,7 @@ public class ItemSpriteSheet { public static final int WAND_LIGHTNING = WANDS+3; public static final int WAND_DISINTEGRATION = WANDS+4; public static final int WAND_PRISMATIC_LIGHT= WANDS+5; - public static final int WAND_VENOM = WANDS+6; + public static final int WAND_CORROSION = WANDS+6; public static final int WAND_LIVING_EARTH = WANDS+7; public static final int WAND_BLAST_WAVE = WANDS+8; public static final int WAND_CORRUPTION = WANDS+9;