mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 03:23:15 +01:00
Fix incorrect target api when executing custom actions (#20778)
This commit is contained in:
@@ -1069,7 +1069,7 @@ GameActions::Result ScriptEngine::QueryOrExecuteCustomGameAction(const CustomAct
|
||||
}
|
||||
|
||||
std::vector<DukValue> pluginCallArgs;
|
||||
if (GetTargetAPIVersion() <= API_VERSION_68_CUSTOM_ACTION_ARGS)
|
||||
if (customActionInfo.Owner->GetTargetAPIVersion() <= API_VERSION_68_CUSTOM_ACTION_ARGS)
|
||||
{
|
||||
pluginCallArgs = { *dukArgs };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user