1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-21 11:22:45 +01:00

Codefix: typos in string names

This commit is contained in:
Rubidium
2025-08-31 09:15:35 +02:00
committed by rubidium42
parent 37b72f9dcf
commit da8422a656
62 changed files with 181 additions and 181 deletions

View File

@@ -86,7 +86,7 @@ CommandCost CmdDecreaseLoan(DoCommandFlags flags, LoanCommand cmd, Money amount)
{
Company *c = Company::Get(_current_company);
if (c->current_loan == 0) return CommandCost(STR_ERROR_LOAN_ALREADY_REPAYED);
if (c->current_loan == 0) return CommandCost(STR_ERROR_LOAN_ALREADY_REPAID);
Money loan;
switch (cmd) {