diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2022-11-16 19:23:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-16 13:23:27 -0500 |
| commit | cc2409606eb8b7fbbaa57c071a7d7039fb265f94 (patch) | |
| tree | 2f61408d048ac38a9035a98bb6d370009bfc345f /src/code/z_elf_message.c | |
| parent | acc077a24c4fc75b98ccdd30e47b45ee897bb236 (diff) | |
Update item names (#1376)
* Reevaluate item names (`ItemID` enum)
* format
* Carry `ItemID` changes to `ExchangeItemID`
* format
* Add item enum comments on items to slots array
* Rename slots according to current item enum names
* Add item enum comments on items to PlayerItemAction array
* Rename PlayerItemAction enum names according to current item enum names
* gi, gid names...
* `QUEST_GERUDO_CARD` -> `QUEST_GERUDOS_CARD`
* `DUNGEON_KEY_BOSS` -> `DUNGEON_BOSS_KEY`
* `UPG_` sticks/nuts : +deku
* Fixed remove array enum comments in `sDebugSaveEquips`
* "magic beans" -> "magic bean" (singular)
* cucco -> chicken (the one from weird egg, "alarm clock bird" from literal japanese translation)
Diffstat (limited to 'src/code/z_elf_message.c')
| -rw-r--r-- | src/code/z_elf_message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_elf_message.c b/src/code/z_elf_message.c index abb3cfef6..a07e5d0c6 100644 --- a/src/code/z_elf_message.c +++ b/src/code/z_elf_message.c @@ -39,7 +39,7 @@ u32 QuestHint_CheckCondition(QuestHintCmd* hintCmd) { case (QUEST_HINT_CONDITION_DUNGEON_ITEM << 1): return ((hintCmd->byte0 & 1) == 1) == - (CHECK_DUNGEON_ITEM(hintCmd->byte1 - ITEM_KEY_BOSS, gSaveContext.mapIndex) != 0); + (CHECK_DUNGEON_ITEM(hintCmd->byte1 - ITEM_DUNGEON_BOSS_KEY, gSaveContext.mapIndex) != 0); case (QUEST_HINT_CONDITION_ITEM << 1): return ((hintCmd->byte0 & 1) == 1) == (hintCmd->byte3 == INV_CONTENT(hintCmd->byte1)); |
