root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/network/aion/clientpackets/CM_MOVE_ITEM.java
| 993 | 1002 | ||
|---|---|---|---|
16 | */ | 16 | */ |
17 | package com.aionemu.gameserver.network.aion.clientpackets; | 17 | package com.aionemu.gameserver.network.aion.clientpackets; |
18 | 18 | ||
19 | import org.apache.log4j.Logger; | ||
20 | |||
21 | import com.aionemu.gameserver.model.gameobjects.player.Player; | 19 | import com.aionemu.gameserver.model.gameobjects.player.Player; |
22 | import com.aionemu.gameserver.network.aion.AionClientPacket; | 20 | import com.aionemu.gameserver.network.aion.AionClientPacket; |
23 | import com.aionemu.gameserver.network.aion.serverpackets.SM_EMOTION; | 21 | import com.aionemu.gameserver.network.aion.serverpackets.SM_EMOTION; |
24 | import com.aionemu.gameserver.services.ItemService; | 22 | import com.aionemu.gameserver.services.ItemService; |
25 | import com.aionemu.gameserver.utils.PacketSendUtility; | 23 | import com.aionemu.gameserver.utils.PacketSendUtility; |
26 | import com.google.inject.Inject; | 24 | import com.google.inject.Inject; |
25 | |||
27 | /** | 26 | /** |
28 | * | ||
29 | * @author alexa026, kosyachok | 27 | * @author alexa026, kosyachok |
30 | * | 28 | * |
31 | */ | 29 | */ |
... | ... | ||
34 | @Inject | 32 | @Inject |
35 | private ItemService itemService; | 33 | private ItemService itemService; |
36 | 34 | ||
37 | private static final Logger log = Logger.getLogger(CM_MOVE_ITEM.class); | ||
38 | |||
39 | /** | 35 | /** |
40 | * Target object id that client wants to TALK WITH or 0 if wants to unselect | 36 | * Target object id that client wants to TALK WITH or 0 if wants to unselect |
41 | */ | 37 | */ |
42 | private int targetObjectId; | 38 | private int targetObjectId; |
43 | private int source; | 39 | private int source; |
44 | private int destination; | 40 | private int destination; |
41 | @SuppressWarnings("unused") | ||
45 | private int slot; | 42 | private int slot; |
46 | /** | 43 | /** |
47 | * Constructs new instance of <tt>CM_CM_REQUEST_DIALOG </tt> packet | 44 | * Constructs new instance of <tt>CM_CM_REQUEST_DIALOG </tt> packet |
Download diff