Browse Source

Fix typo in thread name.

combat-2
MagicBot 1 year ago
parent
commit
b8c0f997f6
  1. 2
      src/engine/objects/City.java

2
src/engine/objects/City.java

@ -1083,7 +1083,7 @@ public class City extends AbstractWorldObject {
Thread destroyCityThread = new Thread(new DestroyCityThread(this)); Thread destroyCityThread = new Thread(new DestroyCityThread(this));
destroyCityThread.setName("deestroyCity:" + this.getName()); destroyCityThread.setName("destroyCity:" + this.getName());
destroyCityThread.start(); destroyCityThread.start();
} }

Loading…
Cancel
Save