From 1451928745171b04c5d5b665aa420f5adfbeba7b Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 18 Jun 2016 21:48:40 -0400 Subject: [PATCH] v0.4.0: removed the upgrade message from the blacksmith --- .../shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java index 1119ceb84..95266becd 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java @@ -190,7 +190,6 @@ public class Blacksmith extends NPC { ((EquipableItem)first).doUnequip( Dungeon.hero, true ); } first.level(first.level()+1); //prevents on-upgrade effects like enchant/glyph removal - GLog.p( Messages.get(ScrollOfUpgrade.class, "looks_better", first.name()) ); Dungeon.hero.spendAndNext( 2f ); Badges.validateItemLevelAquired( first );