From 0de870dd45e91e8ccd1c6b67c47193c9568e5daf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 16 Feb 2016 19:34:49 -0500 Subject: [PATCH] v0.3.4a: fixed a text error in lloyd's beacon --- .../shatteredpixeldungeon/items/artifacts/LloydsBeacon.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java index 31ef30e15..307d5ceee 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/LloydsBeacon.java @@ -220,7 +220,7 @@ public class LloydsBeacon extends Artifact { } else if (ch.properties().contains(Char.Property.IMMOVABLE)) { - GLog.w( Messages.get(this, "tele_fail") ); + GLog.w( Messages.get(LloydsBeacon.class, "tele_fail") ); } else { @@ -243,7 +243,7 @@ public class LloydsBeacon extends Artifact { @Override public String prompt() { - return Messages.get(this, "prompt"); + return Messages.get(LloydsBeacon.class, "prompt"); } };