1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Make Coords isNull/setNull functions TitleCase (#15382)

This commit is contained in:
Michael Steenbeek
2021-09-09 01:48:53 +02:00
committed by GitHub
parent e00eb3ec52
commit 624a32e93b
46 changed files with 246 additions and 246 deletions

View File

@@ -878,7 +878,7 @@ DukValue ScriptEngine::GameActionResultToDuk(const GameAction& action, const std
{
obj.Set("cost", result->Cost);
}
if (!result->Position.isNull())
if (!result->Position.IsNull())
{
obj.Set("position", ToDuk(_context, result->Position));
}