Renamed class to not conflict with the java.lang version.
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
|
||||
package engine.net.client.handlers;
|
||||
|
||||
import engine.Enum;
|
||||
import engine.Enum.DispatchChannel;
|
||||
import engine.mbEnums;
|
||||
import engine.mbEnums.DispatchChannel;
|
||||
import engine.exception.MsgSendException;
|
||||
import engine.net.DispatchMessage;
|
||||
import engine.net.client.ClientConnection;
|
||||
@@ -43,7 +43,7 @@ public class TransferItemFromEquipToInventoryHandler extends AbstractClientMsgHa
|
||||
if (itemManager == null)
|
||||
return true;
|
||||
|
||||
Enum.EquipSlotType slot = msg.slot;
|
||||
mbEnums.EquipSlotType slot = msg.slot;
|
||||
|
||||
Item item = itemManager.getItemFromEquipped(slot);
|
||||
|
||||
@@ -58,7 +58,7 @@ public class TransferItemFromEquipToInventoryHandler extends AbstractClientMsgHa
|
||||
if (!item.validForEquip(origin, player, itemManager))
|
||||
return true;
|
||||
|
||||
if (item.containerType == Enum.ItemContainerType.EQUIPPED)
|
||||
if (item.containerType == mbEnums.ItemContainerType.EQUIPPED)
|
||||
itemManager.moveItemToInventory(item);
|
||||
|
||||
int ItemType = item.getObjectType().ordinal();
|
||||
|
||||
Reference in New Issue
Block a user