From 41e5c839e08bfc811b1e8d7272996567776b788f Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 25 Apr 2012 20:50:13 +0000 Subject: (svn r24179) -Codechange: move some variables of Town to TownCache --- src/road_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/road_cmd.cpp') diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp index c20daa5a8..0930d2ace 100644 --- a/src/road_cmd.cpp +++ b/src/road_cmd.cpp @@ -493,7 +493,7 @@ CommandCost CmdBuildRoad(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 company = OWNER_TOWN; /* If we are not within a town, we are not owned by the town */ - if (town == NULL || DistanceSquare(tile, town->xy) > town->squared_town_zone_radius[HZB_TOWN_EDGE]) { + if (town == NULL || DistanceSquare(tile, town->xy) > town->cache.squared_town_zone_radius[HZB_TOWN_EDGE]) { company = OWNER_NONE; } } -- cgit v1.2.3-54-g00ecf