From 2bb55aa7c15d62e66b6bcd8a9518c161494ada3c Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 22 Oct 2016 22:42:52 -0400 Subject: [PATCH] v0.4.3a: fixed a 'no string found' error in corpsedust --- .../shatteredpixeldungeon/items/quest/CorpseDust.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java index 620bf3002..0a0e8f554 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/quest/CorpseDust.java @@ -67,7 +67,7 @@ public class CorpseDust extends Item { @Override public boolean doPickUp(Hero hero) { if (super.doPickUp(hero)){ - GLog.n( Messages.get("chill") ); + GLog.n( Messages.get( this, "chill") ); Buff.affect(hero, DustGhostSpawner.class); return true; }