Temporarily removed follower fly script.

This commit is contained in:
Ariel Antonitis 2021-03-10 15:06:59 -05:00
parent 2723b69931
commit d05a5a0857

View File

@ -1719,8 +1719,8 @@ bool8 ScrFunc_getfolloweraction(struct ScriptContext *ctx) // Essentially a big
ScriptCall(ctx, EventScript_FollowerLovesYou);
return FALSE;
}
// If map is not flyable, set the script to jump past the fly check
if (!Overworld_MapTypeAllowsTeleportAndFly(gMapHeader.mapType))
// If map is not flyable, set the script to jump past the fly check TODO: Should followers ask to fly?
if (TRUE || !Overworld_MapTypeAllowsTeleportAndFly(gMapHeader.mapType))
ScriptJump(ctx, EventScript_FollowerEnd);
behavior = MapGridGetMetatileBehaviorAt(objEvent->currentCoords.x, objEvent->currentCoords.y);
species = GetMonData(mon, MON_DATA_SPECIES);