Clarify event ticket flag names
This commit is contained in:
@@ -428,7 +428,7 @@ static void CreateLilycoveSSTidalMultichoice(void)
|
||||
}
|
||||
}
|
||||
|
||||
if (CheckBagHasItem(ITEM_EON_TICKET, 1) == TRUE && FlagGet(FLAG_SYS_HAS_EON_TICKET) == TRUE)
|
||||
if (CheckBagHasItem(ITEM_EON_TICKET, 1) == TRUE && FlagGet(FLAG_ENABLE_SHIP_SOUTHERN_ISLAND) == TRUE)
|
||||
{
|
||||
if (gSpecialVar_0x8004 == 0)
|
||||
{
|
||||
@@ -436,11 +436,11 @@ static void CreateLilycoveSSTidalMultichoice(void)
|
||||
selectionCount++;
|
||||
}
|
||||
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_HAS_EON_TICKET) == FALSE)
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_EON_TICKET) == FALSE)
|
||||
{
|
||||
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_SOUTHERN_ISLAND;
|
||||
selectionCount++;
|
||||
FlagSet(FLAG_HAS_EON_TICKET);
|
||||
FlagSet(FLAG_SHOWN_EON_TICKET);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -452,11 +452,11 @@ static void CreateLilycoveSSTidalMultichoice(void)
|
||||
selectionCount++;
|
||||
}
|
||||
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_HAS_MYSTIC_TICKET) == FALSE)
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_MYSTIC_TICKET) == FALSE)
|
||||
{
|
||||
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_NAVEL_ROCK;
|
||||
selectionCount++;
|
||||
FlagSet(FLAG_HAS_MYSTIC_TICKET);
|
||||
FlagSet(FLAG_SHOWN_MYSTIC_TICKET);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -468,11 +468,11 @@ static void CreateLilycoveSSTidalMultichoice(void)
|
||||
selectionCount++;
|
||||
}
|
||||
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_HAS_AURORA_TICKET) == FALSE)
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_AURORA_TICKET) == FALSE)
|
||||
{
|
||||
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_BIRTH_ISLAND;
|
||||
selectionCount++;
|
||||
FlagSet(FLAG_HAS_AURORA_TICKET);
|
||||
FlagSet(FLAG_SHOWN_AURORA_TICKET);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -484,11 +484,11 @@ static void CreateLilycoveSSTidalMultichoice(void)
|
||||
selectionCount++;
|
||||
}
|
||||
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_HAS_OLD_SEA_MAP) == FALSE)
|
||||
if (gSpecialVar_0x8004 == 1 && FlagGet(FLAG_SHOWN_OLD_SEA_MAP) == FALSE)
|
||||
{
|
||||
sLilycoveSSTidalSelections[selectionCount] = SSTIDAL_SELECTION_FARAWAY_ISLAND;
|
||||
selectionCount++;
|
||||
FlagSet(FLAG_HAS_OLD_SEA_MAP);
|
||||
FlagSet(FLAG_SHOWN_OLD_SEA_MAP);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user