1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 00:04:43 +01:00

Move .bankLoan into ParkData struct

This commit is contained in:
Aaron van Geffen
2025-08-13 21:24:06 +02:00
parent e5ead99c83
commit 68a4991971
16 changed files with 43 additions and 39 deletions

View File

@@ -569,7 +569,7 @@ static void ConsoleCommandGet(InteractiveConsole& console, const arguments_t& ar
}
else if (argv[0] == "current_loan")
{
console.WriteLine(FormatString("current_loan {CURRENCY2DP}", gameState.bankLoan));
console.WriteLine(FormatString("current_loan {CURRENCY2DP}", gameState.park.bankLoan));
}
else if (argv[0] == "max_loan")
{