From 6b1cd9cb727e31a63f890e0cef704f6907657814 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 26 Dec 2014 17:32:14 -0500 Subject: [PATCH] v0.2.3: fixed a typo when caustic ooze is applied --- .../shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index ba18d4e91..c1450d828 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -1168,7 +1168,7 @@ public class Hero extends Char { GLog.w( "You are poisoned!" ); interrupt(); } else if (buff instanceof Ooze) { - GLog.w( "Caustic ooze eats your flesh. Wash away it!" ); + GLog.w( "Caustic ooze eats your flesh. Wash it away!" ); } else if (buff instanceof Roots) { GLog.w( "You can't move!" ); } else if (buff instanceof Weakness) {