From f0500e8eead9381f972c801a97574cd26af8aac7 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 17 Feb 2015 15:20:38 -0500 Subject: [PATCH] v0.2.4: updated torch description, no longer specifically refers to demon halls. --- src/com/shatteredpixel/shatteredpixeldungeon/items/Torch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/Torch.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/Torch.java index d7c624dba..af7c4d7ae 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/Torch.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/Torch.java @@ -51,7 +51,7 @@ public class Torch extends Item { @Override public void execute( Hero hero, String action ) { - if (action == AC_LIGHT) { + if (action.equals( AC_LIGHT )) { hero.spend( TIME_TO_LIGHT ); hero.busy(); @@ -89,6 +89,6 @@ public class Torch extends Item { @Override public String info() { return - "It's an indispensable item in The Demon Halls, which are notorious for their poor ambient lighting."; + "An adventuring staple, when a dungeon goes dark, a torch can help lead the way."; } }