JustDerb / RoR2-VsTwitch

Risk of Rain 2 Mod - Fight Twitch Chat.
https://thunderstore.io/package/JustDerb/Vs_Twitch/
6 stars 4 forks source link

Bit Event: Shrine of the Mountain should activate if teleporter already activated #14

Closed JustDerb closed 3 years ago

JustDerb commented 3 years ago

Either don't choose the event, or make it wait until the next stage.

JustDerb commented 3 years ago

This was already added (See EventFactory::TriggerShrineOfTheMountainInternal():

            // Wait until the teleporter isn't active
            yield return new WaitUntil(() => {
                return TeleporterInteraction.instance && TeleporterInteraction.instance.isIdle;
            });