Update to console output

This commit is contained in:
2024-08-25 16:13:22 -04:00
parent d304d0706c
commit 93befc0887
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1104,7 +1104,7 @@ public class City extends AbstractWorldObject {
Thread destroyCityThread = new Thread(new DestroyCityThread(this));
destroyCityThread.setName("destroyCity:" + this.getName());
destroyCityThread.setName("destroyCity:" + this.getParent().zoneName);
destroyCityThread.start();
}
@@ -1112,7 +1112,7 @@ public class City extends AbstractWorldObject {
Thread transferCityThread = new Thread(new TransferCityThread(this, newOwner));
transferCityThread.setName("TransferCity:" + this.getName());
transferCityThread.setName("TransferCity:" + this.getParent().zoneName));
transferCityThread.start();
}