forked from MagicBane/Server
Added Test Log to verify Magixbox build of custom branch. Added new test dev command.
This commit is contained in:
@@ -61,6 +61,7 @@ public class Zone extends AbstractGameObject {
|
||||
//public static ArrayList<Mob> respawnQue = new ArrayList<>();
|
||||
public static final Set<Mob> respawnQue = Collections.newSetFromMap(new ConcurrentHashMap<>());
|
||||
public static long lastRespawn = 0;
|
||||
private int campLvl = 0;
|
||||
/**
|
||||
* ResultSet Constructor
|
||||
*/
|
||||
@@ -104,6 +105,16 @@ public class Zone extends AbstractGameObject {
|
||||
|
||||
}
|
||||
|
||||
public void setCampLvl(int level)
|
||||
{
|
||||
this.campLvl = level;
|
||||
}
|
||||
|
||||
public int getCamplvl()
|
||||
{
|
||||
return this.campLvl;
|
||||
}
|
||||
|
||||
public static void serializeForClientMsg(Zone zone, ByteBufferWriter writer) {
|
||||
|
||||
if (zone.loadNum == 0 && zone.playerCityID == 0)
|
||||
|
||||
Reference in New Issue
Block a user