mirror of https://github.com/OpenTTD/OpenTTD
(svn r19663) -Fix: in rare cases, update of signals could be missed
parent
320dcc7d07
commit
1f963aed43
|
@ -670,6 +670,9 @@ CommandCost DoCommandPInternal(TileIndex tile, uint32 p1, uint32 p2, uint32 cmd,
|
||||||
/* If we're needing more money and we haven't done
|
/* If we're needing more money and we haven't done
|
||||||
* anything yet, ask for the money! */
|
* anything yet, ask for the money! */
|
||||||
if (_additional_cash_required != 0 && res2.GetCost() == 0) {
|
if (_additional_cash_required != 0 && res2.GetCost() == 0) {
|
||||||
|
/* It could happen we removed rail, thus gained money, and deleted something else.
|
||||||
|
* So make sure the signal buffer is empty even in this case */
|
||||||
|
UpdateSignalsInBuffer();
|
||||||
SetDParam(0, _additional_cash_required);
|
SetDParam(0, _additional_cash_required);
|
||||||
return_dcpi(CommandCost(STR_ERROR_NOT_ENOUGH_CASH_REQUIRES_CURRENCY), false);
|
return_dcpi(CommandCost(STR_ERROR_NOT_ENOUGH_CASH_REQUIRES_CURRENCY), false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue