From 7cf4f09c2605d10287530b8cf6dd306426826c79 Mon Sep 17 00:00:00 2001 From: frosch Date: Tue, 29 Jan 2008 14:02:18 +0000 Subject: [PATCH] (svn r12012) -Fix (r11795): Enable TownRatingTestMode during cost estimation with 'shift'-key. --- src/command.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/command.cpp b/src/command.cpp index 40b3ff9b8f..c550dcb8f2 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -572,7 +572,9 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback, !(cmd & (CMD_NETWORK_COMMAND | CMD_SHOW_NO_ERROR)) && (cmd & 0xFF) != CMD_PAUSE) { /* estimate the cost. */ + SetTownRatingTestMode(true); res = proc(tile, flags, p1, p2); + SetTownRatingTestMode(false); if (CmdFailed(res)) { res.SetGlobalErrorMessage(); ShowErrorMessage(_error_message, error_part1, x, y);