From bd635c83fb6eede1ad68998c073e98bbc3966d1f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 22 Jan 2016 18:03:43 -0500 Subject: [PATCH] v0.3.4: fixed a text bug on horn of plenty --- .../shatteredpixeldungeon/items/artifacts/HornOfPlenty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java index 6af856687..897912e48 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/HornOfPlenty.java @@ -180,7 +180,7 @@ public class HornOfPlenty extends Artifact { image = ItemSpriteSheet.ARTIFACT_HORN1; if (charge == chargeCap){ - GLog.p( Messages.get(this, "full") ); + GLog.p( Messages.get(HornOfPlenty.class, "full") ); partialCharge = 0; }