From 4a88ed7b483bf76740c5fa9e6747002cb0573557 Mon Sep 17 00:00:00 2001
From: Rumen Nikiforov <unafraid89@gmail.com>
Date: Fri, 19 Oct 2012 20:56:03 +0000
Subject: [PATCH] BETA: DP-Part for [L5683]

---
 .../scripts/handlers/admincommandhandlers/AdminShop.java    | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/admincommandhandlers/AdminShop.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/admincommandhandlers/AdminShop.java
index 2952da619f..30058e3df7 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/admincommandhandlers/AdminShop.java
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/admincommandhandlers/AdminShop.java
@@ -23,7 +23,7 @@ import com.l2jserver.gameserver.model.L2TradeList;
 import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
 import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
 import com.l2jserver.gameserver.network.serverpackets.BuyList;
-import com.l2jserver.gameserver.network.serverpackets.ExBuySellListPacket;
+import com.l2jserver.gameserver.network.serverpackets.ExBuySellList;
 
 
 /**
@@ -86,9 +86,7 @@ public class AdminShop implements IAdminCommandHandler
 		if (list != null)
 		{
 			activeChar.sendPacket(new BuyList(list, activeChar.getAdena(), 0));
-			activeChar.sendPacket(new ExBuySellListPacket(activeChar, list, 0, false));
-			if (Config.DEBUG)
-				_log.fine("GM: " + activeChar.getName() + "(" + activeChar.getObjectId() + ") opened GM shop id " + val);
+			activeChar.sendPacket(new ExBuySellList(activeChar, 0, false));
 		}
 		else
 		{
-- 
GitLab