diff --git a/src/command.cpp b/src/command.cpp --- a/src/command.cpp +++ b/src/command.cpp @@ -416,7 +416,7 @@ CommandCost DoCommand(TileIndex tile, ui if (_docommand_recursive == 1 && !(flags & DC_QUERY_COST) && !(flags & DC_BANKRUPT) && - !CheckCompanyHasMoney(res)) { + !CheckCompanyHasMoney(res)) { // CheckCompanyHasMoney() modifies 'res' to an error if it fails. goto error; } @@ -433,7 +433,7 @@ CommandCost DoCommand(TileIndex tile, ui error: res.SetGlobalErrorMessage(); _docommand_recursive--; - return CMD_ERROR; + return res; } /* if toplevel, subtract the money. */