forked from MagicBane/Server
Initialize all collections for npc
This commit is contained in:
@@ -869,10 +869,12 @@ public class NPC extends AbstractCharacter {
|
|||||||
if (this.building != null)
|
if (this.building != null)
|
||||||
NPCManager.slotCharacterInBuilding(this);
|
NPCManager.slotCharacterInBuilding(this);
|
||||||
|
|
||||||
// If NPC is a vendor create arraylist for forge
|
// If NPC is a vendor then configure ForgeManager support
|
||||||
|
|
||||||
if (this.contract.isTrainer() == false)
|
if (this.contract.isTrainer() == false) {
|
||||||
ForgeManager.vendorItemLookup.computeIfAbsent(this, k -> new ArrayList<>()); // Forge lookup
|
ForgeManager.vendorItemLookup.computeIfAbsent(this, k -> new ArrayList<>()); // Forge lookup
|
||||||
|
ForgeManager.vendorWorkOrderLookup.computeIfAbsent(this, k -> new ArrayList<>());
|
||||||
|
}
|
||||||
|
|
||||||
this.symbol = this.contract.getIconID();
|
this.symbol = this.contract.getIconID();
|
||||||
this.modTypeTable = this.contract.getNPCModTypeTable();
|
this.modTypeTable = this.contract.getNPCModTypeTable();
|
||||||
|
|||||||
Reference in New Issue
Block a user