1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-27 16:39:09 +00:00

Fix #10212: [Script] Nested ScriptAccounting scopes are not restored properly.

This commit is contained in:
Michael Lutz
2022-12-03 21:38:16 +01:00
parent 1131608eb4
commit 1c205b2cda

View File

@@ -103,7 +103,7 @@ ScriptObject::ActiveInstance::~ActiveInstance()
/* static */ void ScriptObject::SetDoCommandCosts(Money value)
{
GetStorage()->costs = CommandCost(value);
GetStorage()->costs = CommandCost(INVALID_EXPENSES, value); // Expense type is never read.
}
/* static */ void ScriptObject::IncreaseDoCommandCosts(Money value)