Variable removed from city

This commit is contained in:
2024-04-06 15:45:45 -04:00
parent 10805a7d37
commit f10141eddb
4 changed files with 11 additions and 19 deletions
-9
View File
@@ -78,7 +78,6 @@ public class City extends AbstractWorldObject {
private Vector3fImmutable location = Vector3fImmutable.ZERO;
// Players who have entered the city (used for adding and removing affects)
private Vector3fImmutable bindLoc;
private int warehouseBuildingID = 0;
private boolean open = false;
private String hash;
public Warehouse warehouse;
@@ -1060,14 +1059,6 @@ public class City extends AbstractWorldObject {
}
}
public int getWarehouseBuildingID() {
return warehouseBuildingID;
}
public void setWarehouseBuildingID(int warehouseBuildingID) {
this.warehouseBuildingID = warehouseBuildingID;
}
public final void destroy() {
Thread destroyCityThread = new Thread(new DestroyCityThread(this));