1
0
Fork 0

(svn r20481) -Fix: statues were not removed when towns would be removed

release/1.1
rubidium 2010-08-13 11:58:45 +00:00
parent a7beb897e2
commit c5ec910980
1 changed files with 8 additions and 0 deletions

View File

@ -89,6 +89,10 @@ Town::~Town()
assert(!IsTileOwner(tile, OWNER_TOWN) || ClosestTownFromTile(tile, UINT_MAX) != this);
break;
case MP_OBJECT:
assert(GetObjectType(tile) != OBJECT_STATUE || GetStatueTownID(tile) != this->index);
break;
default:
break;
}
@ -2398,6 +2402,10 @@ CommandCost CmdDeleteTown(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
try_clear = Industry::GetByTile(tile)->town == t;
break;
case MP_OBJECT:
try_clear = GetObjectType(tile) == OBJECT_STATUE && GetStatueTownID(tile) == t->index;
break;
default:
break;
}