forked from MagicBane/Server
Equipment slot refactor started.
This commit is contained in:
@@ -438,7 +438,7 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
||||
}
|
||||
|
||||
//apply item bonuses for equipped items
|
||||
ConcurrentHashMap<Integer, Item> equip = null;
|
||||
ConcurrentHashMap<EquipSlotType, Item> equip = null;
|
||||
|
||||
if (playerCharacter.charItemManager != null)
|
||||
equip = playerCharacter.charItemManager.getEquipped();
|
||||
@@ -1770,7 +1770,7 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
||||
}
|
||||
|
||||
//apply item bonuses for equipped items
|
||||
ConcurrentHashMap<Integer, Item> equip = null;
|
||||
ConcurrentHashMap<EquipSlotType, Item> equip = null;
|
||||
|
||||
if (this.charItemManager != null) {
|
||||
equip = this.charItemManager.getEquipped();
|
||||
|
||||
Reference in New Issue
Block a user