From 6aa8a4f9e2ce785b366260f12cbb3ddfb3f63c32 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Mon, 18 Nov 2019 20:44:10 +0000 Subject: [PATCH] Probable fix for setting Dwarven manufacture shop. --- .../java/org/l2jmobius/gameserver/network/IncomingPackets.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/network/IncomingPackets.java b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/network/IncomingPackets.java index deb4abaa64..32f53df9c0 100644 --- a/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/network/IncomingPackets.java +++ b/L2J_Mobius_1.0_Ertheia/java/org/l2jmobius/gameserver/network/IncomingPackets.java @@ -186,7 +186,7 @@ public enum IncomingPackets implements IIncomingPackets REQUEST_RECIPE_SHOP_MANAGE_LIST(0xB9, null, ConnectionState.IN_GAME), REQUEST_RECIPE_SHOP_MESSAGE_SET(0xBA, RequestRecipeShopMessageSet::new, ConnectionState.IN_GAME), REQUEST_RECIPE_SHOP_LIST_SET(0xBB, RequestRecipeShopListSet::new, ConnectionState.IN_GAME), - REQUEST_RECIPE_SHOP_MANAGE_QUIT(0xBC, RequestRecipeShopManageQuit::new, ConnectionState.IN_GAME), + REQUEST_RECIPE_SHOP_MANAGE_QUIT(0xBC, null, ConnectionState.IN_GAME), REQUEST_RECIPE_SHOP_MANAGE_CANCEL(0xBD, null, ConnectionState.IN_GAME), REQUEST_RECIPE_SHOP_MAKE_INFO(0xBE, RequestRecipeShopMakeInfo::new, ConnectionState.IN_GAME), REQUEST_RECIPE_SHOP_MAKE_ITEM(0xBF, RequestRecipeShopMakeItem::new, ConnectionState.IN_GAME),