mirror of https://github.com/OpenTTD/OpenTTD
Fix #10117: Decrement object burst limit after build check
parent
c4e655b1d4
commit
c65a2799c9
|
@ -408,7 +408,7 @@ CommandCost CmdBuildObjectArea(DoCommandFlag flags, TileIndex tile, TileIndex st
|
|||
CommandCost ret = Command<CMD_BUILD_OBJECT>::Do(flags & ~DC_EXEC, t, type, view);
|
||||
|
||||
/* If we've reached the limit, stop building (or testing). */
|
||||
if (c != nullptr && --limit <= 0) break;
|
||||
if (c != nullptr && limit-- <= 0) break;
|
||||
|
||||
if (ret.Failed()) {
|
||||
last_error = ret;
|
||||
|
|
Loading…
Reference in New Issue