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
1 changed files with 1 additions and 1 deletions

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)