|
|
@ -51,7 +51,7 @@ public class Building extends AbstractWorldObject { |
|
|
|
// Used for thread safety
|
|
|
|
// Used for thread safety
|
|
|
|
|
|
|
|
|
|
|
|
private final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); |
|
|
|
private final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); |
|
|
|
public final ConcurrentHashMap<AbstractCharacter, Integer> hirelings = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); |
|
|
|
public ConcurrentHashMap<AbstractCharacter, Integer> hirelings = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); |
|
|
|
private final HashMap<Integer, DoorCloseJob> doorJobs = new HashMap<>(); |
|
|
|
private final HashMap<Integer, DoorCloseJob> doorJobs = new HashMap<>(); |
|
|
|
public int meshUUID; |
|
|
|
public int meshUUID; |
|
|
|
public Zone parentZone; |
|
|
|
public Zone parentZone; |
|
|
|