From 1809d6c7a4f9a123837c16fcda26af2efabbe0b6 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 11 Jul 2016 06:30:52 -0400 Subject: [PATCH] v0.4.1: removed another shopping message call --- .../shatteredpixeldungeon/windows/WndTradeItem.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndTradeItem.java b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndTradeItem.java index 47f0af839..b0c72a963 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndTradeItem.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndTradeItem.java @@ -36,7 +36,6 @@ import com.shatteredpixel.shatteredpixeldungeon.ui.ItemSlot; import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton; import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextMultiline; import com.shatteredpixel.shatteredpixeldungeon.ui.Window; -import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; public class WndTradeItem extends Window { @@ -232,7 +231,6 @@ public class WndTradeItem extends Window { int price = item.price(); new Gold( price ).doPickUp( hero ); - GLog.i( Messages.get(this, "sold"), item.name(), price ); } private void sellOne( Item item ) {