1
0
Fork 0

(svn r27341) -Fix [FS#6332]: Do not rerandomise the town name when only cost-estimating the founding.

release/1.6
frosch 2015-07-26 09:56:43 +00:00
parent 4830497f0b
commit a81968d0f3
1 changed files with 2 additions and 1 deletions

View File

@ -1113,7 +1113,8 @@ public:
bool success = DoCommandP(tile, this->town_size | this->city << 2 | this->town_layout << 3 | random << 6,
townnameparts, CMD_FOUND_TOWN | CMD_MSG(errstr), cc, name);
if (success) this->RandomTownName();
/* Rerandomise name, if success and no cost-estimation. */
if (success && !_shift_pressed) this->RandomTownName();
}
virtual void OnClick(Point pt, int widget, int click_count)