Added Test Log to verify Magixbox build of custom branch. Added new test dev command.

This commit is contained in:
2024-08-17 07:16:35 -04:00
parent 9542034e32
commit e5c1dc7bcb
4 changed files with 76 additions and 0 deletions
+11
View File
@@ -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)