From 0dea73a3515881dadcc51daf297fe28b1becd2b1 Mon Sep 17 00:00:00 2001 From: Tacoman369 <90735287+Tacoman369@users.noreply.github.com> Date: Sat, 14 Sep 2024 09:27:05 -0500 Subject: [PATCH] FixBossText (#113) - Fix boss hint text to not be missing a linking word - Update Z3DR --- Z3DR | 2 +- source/hint_list.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Z3DR b/Z3DR index 7946ead..79e8283 160000 --- a/Z3DR +++ b/Z3DR @@ -1 +1 @@ -Subproject commit 7946eade95f890300934c3bc145c29e60216c32c +Subproject commit 79e8283d111561f1a66989245f5118e4c20ab626 diff --git a/source/hint_list.cpp b/source/hint_list.cpp index dbd11e1..23de325 100644 --- a/source/hint_list.cpp +++ b/source/hint_list.cpp @@ -2292,11 +2292,11 @@ void HintTable_Init() { /*----------------------- | BOSS HINT TEXT | -----------------------*/ - hintTable[ODOLWA] = HintText::Boss({Text{"a masked jungle warrior", "**FRENCH**", "**SPANISH**"}}); - hintTable[GOHT] = HintText::Boss({Text{"a masked mechanical monster", "**FRENCH**", "**SPANISH**"}}); - hintTable[GYORG] = HintText::Boss({Text{"a gargantuan masked fish", "**FRENCH**", "**SPANISH**"}}); - hintTable[TWINMOLD] = HintText::Boss({Text{"a giant masked insect", "**FRENCH**", "**SPANISH**"}}); - hintTable[MAJORA] = HintText::Boss({Text{"a cursed mask", "**FRENCH**", "**SPANISH**"}}); + hintTable[ODOLWA] = HintText::Boss({Text{"a masked jungle warrior holds", "**FRENCH**", "**SPANISH**"}}); + hintTable[GOHT] = HintText::Boss({Text{"a masked mechanical monster holds", "**FRENCH**", "**SPANISH**"}}); + hintTable[GYORG] = HintText::Boss({Text{"a gargantuan masked fish holds", "**FRENCH**", "**SPANISH**"}}); + hintTable[TWINMOLD] = HintText::Boss({Text{"a giant masked insect holds", "**FRENCH**", "**SPANISH**"}}); + hintTable[MAJORA] = HintText::Boss({Text{"a cursed mask holds", "**FRENCH**", "**SPANISH**"}}); }