Fix typo in thread name.

This commit is contained in:
2023-09-05 12:30:47 -04:00
parent 11e63f38b1
commit b8c0f997f6
+1 -1
View File
@@ -1083,7 +1083,7 @@ public class City extends AbstractWorldObject {
Thread destroyCityThread = new Thread(new DestroyCityThread(this));
destroyCityThread.setName("deestroyCity:" + this.getName());
destroyCityThread.setName("destroyCity:" + this.getName());
destroyCityThread.start();
}