summaryrefslogtreecommitdiff
path: root/mm/2s2h/Rando/ActorBehavior/EnMnk.cpp
blob: b1e833b75f7e5914d9a5492b4ed826c3f0d3634c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "ActorBehavior.h"

// This interaction is skipped by the SkipLearningSonataOfAwakening and forced on for rando for now, this file simply
// handles queuing up the checks to be given.
void Rando::ActorBehavior::InitEnMnkBehavior() {
    COND_VB_SHOULD(VB_GIVE_ITEM_FROM_MNK, IS_RANDO, {
        *should = false;

        RANDO_SAVE_CHECKS[RC_DEKU_KINGS_CHAMBER_MONKEY].eligible = true;
    });
}