v0.3.4: fixed TXT_YOU_NOW_HAVE

This commit is contained in:
Evan Debenham
2015-12-28 23:24:55 -05:00
committed by Evan Debenham
parent 39702bbb41
commit 44cead2244
6 changed files with 12 additions and 15 deletions
@@ -22,10 +22,10 @@ package com.shatteredpixel.shatteredpixeldungeon.windows;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CorpseDust;
import com.shatteredpixel.shatteredpixeldungeon.items.quest.Embers;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.plants.Rotberry;
import com.watabou.noosa.BitmapTextMultiline;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.actors.mobs.npcs.Wandmaker;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
@@ -110,7 +110,7 @@ public class WndWandmaker extends Window {
reward.identify();
if (reward.doPickUp( Dungeon.hero )) {
GLog.i( Hero.TXT_YOU_NOW_HAVE, reward.name() );
GLog.i( Messages.get(Dungeon.hero, "you_now_have", reward.name()) );
} else {
Dungeon.level.drop( reward, wandmaker.pos ).sprite.drop();
}