1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-19 12:39:11 +00:00

Fix be01c2cd2a: [Scripts] Broken ScriptGroup::SetName compat wrapper

This commit is contained in:
glx22
2025-02-19 14:59:54 +01:00
committed by Loïc Guilloux
parent a577229e95
commit b8348d7e17
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ AICompany._SetPresidentName <- AICompany.SetPresidentName;
AICompany.SetPresidentName <- function(name) { return AICompany._SetPresidentName(AICompat14.Text(name)); }
AIGroup._SetName <- AIGroup.SetName;
AIGroup.SetName <- function(name) { return AIGroup._SetName(AICompat14.Text(name)); }
AIGroup.SetName <- function(id, name) { return AIGroup._SetName(id, AICompat14.Text(name)); }
AISign._BuildSign <- AISign.BuildSign;
AISign.BuildSign <- function(id, name) { return AISign._BuildSign(id, AICompat14.Text(name)); }