File diff r23436:cfad304b5b27 → r23437:6ce81d75a8ed
src/town_cmd.cpp
Show inline comments
 
@@ -14,6 +14,7 @@
 
#include "road_cmd.h"
 
#include "landscape.h"
 
#include "viewport_func.h"
 
#include "viewport_kdtree.h"
 
#include "cmd_helper.h"
 
#include "command_func.h"
 
#include "industry.h"
 
@@ -1713,6 +1714,7 @@ static void DoCreateTown(Town *t, TileIn
 
	t->townnameparts = townnameparts;
 

	
 
	t->UpdateVirtCoord();
 
	_viewport_sign_kdtree.Insert(ViewportSignKdtreeItem::MakeTown(t->index));
 
	InvalidateWindowData(WC_TOWN_DIRECTORY, 0, 0);
 

	
 
	t->InitializeLayout(layout);
 
@@ -2869,6 +2871,7 @@ CommandCost CmdDeleteTown(TileIndex tile
 
	/* The town destructor will delete the other things related to the town. */
 
	if (flags & DC_EXEC) {
 
		_town_kdtree.Remove(t->index);
 
		_viewport_sign_kdtree.Insert(ViewportSignKdtreeItem::MakeTown(t->index));
 
		delete t;
 
	}