Unused methods removed.

This commit is contained in:
2023-08-26 06:19:03 -04:00
parent a7a93b8500
commit 4d6e57257c
-17
View File
@@ -760,18 +760,6 @@ public class Mob extends AbstractIntelligenceAgent {
return currentID;
}
public float getSpawnX() {
return this.statLat;
}
public float getSpawnY() {
return this.statAlt;
}
public float getSpawnZ() {
return this.statLon;
}
public float getSpawnRadius() {
return this.spawnRadius;
}
@@ -780,11 +768,6 @@ public class Mob extends AbstractIntelligenceAgent {
this.spawnTime = value;
}
//use getSpawnTime instead. This is just for init tables
public int getTrueSpawnTime() {
return this.spawnTime;
}
public String getSpawnTimeAsString() {
if (this.spawnTime == 0)
return MBServerStatics.DEFAULT_SPAWN_TIME_MS / 1000 + " seconds (Default)";