1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Fix build error due to stale base branch for #20100 (#20476)

This commit is contained in:
Matthias Moninger
2023-06-26 10:10:01 +03:00
committed by GitHub
parent 3edb044685
commit fb1b531d59

View File

@@ -269,7 +269,7 @@ DukValue ScObjectManager::CreateScObject(duk_context* ctx, ObjectType type, int3
return GetObjectAsDukValue(ctx, std::make_shared<ScLargeSceneryObject>(type, index));
case ObjectType::Walls:
return GetObjectAsDukValue(ctx, std::make_shared<ScWallObject>(type, index));
case ObjectType::PathBits:
case ObjectType::PathAdditions:
return GetObjectAsDukValue(ctx, std::make_shared<ScFootpathAdditionObject>(type, index));
case ObjectType::Banners:
return GetObjectAsDukValue(ctx, std::make_shared<ScBannerObject>(type, index));