From 0934b7687ab77fb377164867c24423677ced01b6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 13 Feb 2016 23:15:56 -0500 Subject: [PATCH] v0.3.4: fixed more text errors in ethereal chains --- .../shatteredpixeldungeon/items/artifacts/EtherealChains.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java index e6b16a882..87921eea1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/EtherealChains.java @@ -104,7 +104,7 @@ public class EtherealChains extends Artifact { } } if (newPos == -1){ - GLog.w( Messages.get(this, "does_nothing") ); + GLog.w( Messages.get(EtherealChains.class, "does_nothing") ); } else { final int newMobPos = newPos; final Char affected = Actor.findChar( chain.collisionPos );