|
|
@ -147,7 +147,12 @@ public class Item extends AbstractWorldObject { |
|
|
|
|
|
|
|
|
|
|
|
this.canDestroy = true; |
|
|
|
this.canDestroy = true; |
|
|
|
|
|
|
|
|
|
|
|
this.equipSlot = EquipSlotType.values()[rs.getByte("equipSlot")]; |
|
|
|
String equipString = rs.getString("equipSlot"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (equipString.isEmpty()) |
|
|
|
|
|
|
|
this.equipSlot = EquipSlotType.NONE; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
this.equipSlot = EquipSlotType.valueOf(equipString); |
|
|
|
|
|
|
|
|
|
|
|
this.numberOfItems = rs.getInt("numberOfItems"); |
|
|
|
this.numberOfItems = rs.getInt("numberOfItems"); |
|
|
|
|
|
|
|
|
|
|
|