1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 09:44:52 +01:00

Start moving game actions into GameActions namespace

This commit is contained in:
Aaron van Geffen
2025-08-25 22:16:55 +02:00
parent d18645354a
commit 134f4ac43e
7 changed files with 232 additions and 223 deletions

View File

@@ -1246,7 +1246,7 @@ DukValue ScriptEngine::GameActionResultToDuk(const GameAction& action, const Gam
switch (action.GetType())
{
case GameCommand::PlaceBanner:
bannerId = result.GetData<BannerPlaceActionResult>().bannerId;
bannerId = result.GetData<GameActions::BannerPlaceActionResult>().bannerId;
break;
case GameCommand::PlaceLargeScenery:
bannerId = result.GetData<LargeSceneryPlaceActionResult>().bannerId;