VAR_RUN_TRIGGER_IMMEDIATELY -> TRIGGER_RUN_IMMEDIATELY

Getting rid of the VAR_ prefix, to avoid the porymap problem.
This commit is contained in:
tustin2121
2022-10-18 21:12:31 -04:00
parent 327c648e87
commit 4730870646
7 changed files with 38 additions and 38 deletions

View File

@@ -884,7 +884,7 @@ static u8 *TryRunCoordEventScript(struct CoordEvent *coordEvent)
DoCoordEventWeather(coordEvent->trigger);
return NULL;
}
if (coordEvent->trigger == VAR_RUN_TRIGGER_IMMEDIATELY)
if (coordEvent->trigger == TRIGGER_RUN_IMMEDIATELY)
{
RunScriptImmediately(coordEvent->script);
return NULL;