mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-19 12:39:11 +00:00
Fix: [Script] "type" std function might be redefined by scripts (#13686)
This commit is contained in:
@@ -12,8 +12,8 @@ GSBridge.GetBridgeID <- GSBridge.GetBridgeType;
|
||||
class GSCompat14 {
|
||||
function Text(text)
|
||||
{
|
||||
if (type(text) == "string") return text;
|
||||
if (type(text) == "instance" && text instanceof GSText) return text;
|
||||
if (typeof text == "string") return text;
|
||||
if (typeof text == "instance" && text instanceof GSText) return text;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user