Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 67c840c42c | |||
| 42544a137a | |||
| 062fef49a1 |
@@ -597,6 +597,13 @@ public class Building extends AbstractWorldObject {
|
||||
return;
|
||||
}
|
||||
|
||||
if (city.destroyed.get() == true) {
|
||||
Logger.error(city.getName() + "attempt to destroy a destroyed city");
|
||||
return;
|
||||
}
|
||||
|
||||
city.destroyed.set(true);
|
||||
|
||||
// Must remove a bane before considering destruction of a TOL
|
||||
|
||||
if (bane != null) {
|
||||
|
||||
@@ -51,8 +51,6 @@ public class DestroyCityThread implements Runnable {
|
||||
Vector3fImmutable localCoords;
|
||||
ArrayList<Guild> subGuildList;
|
||||
|
||||
city.destroyed.set(true);
|
||||
|
||||
// Member variable assignment
|
||||
|
||||
cityZone = city.getParent();
|
||||
|
||||
Reference in New Issue
Block a user