summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Cox <garrettjcox@gmail.com>2026-01-25 10:57:30 -0600
committerGitHub <noreply@github.com>2026-01-25 10:57:30 -0600
commit41a4434d299f3b4650ab0212b65279d11f68e89d (patch)
tree839d70c0eb60ab03f4d4eef20cf75089019fa4a1
parent16ef59baeaf9f6955281b54d2f75ecc7c968a6c3 (diff)
Fix spider house hint replacements (#1501)
-rw-r--r--mm/2s2h/Rando/ActorBehavior/EnSsh.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/2s2h/Rando/ActorBehavior/EnSsh.cpp b/mm/2s2h/Rando/ActorBehavior/EnSsh.cpp
index 850ed42d3..b9db3a3cf 100644
--- a/mm/2s2h/Rando/ActorBehavior/EnSsh.cpp
+++ b/mm/2s2h/Rando/ActorBehavior/EnSsh.cpp
@@ -11,7 +11,7 @@ extern "C" {
void ApplySwampSpiderHouseHint(u16* textId, bool* loadFromMessageTable) {
CustomMessage::Entry entry = {
- .msg = "Make me...normal again...I'll give you %g{{itemName}}%w...Please...help me...\xE0",
+ .msg = "Make me...normal again...I'll give you %g{{item}}%w...Please...help me...\xE0",
};
CustomMessage::Replace(
@@ -25,12 +25,12 @@ void ApplySwampSpiderHouseHint(u16* textId, bool* loadFromMessageTable) {
void ApplyOceanSpiderHouseHint(u16* textId, bool* loadFromMessageTable) {
CustomMessage::Entry entry = {
- .msg = "Huh? How'd I get up here... Why do I have %g{{article}}{{item}}%w in my pocket...?\xE0",
+ .msg = "Huh? How'd I get up here... Why do I have %g{{item}}%w in my pocket...?\xE0",
};
CustomMessage::Replace(&entry.msg, "{{item}}",
Rando::StaticData::GetItemName(RANDO_SAVE_CHECKS[RC_OCEAN_SPIDER_HOUSE_WALLET].randoItemId,
- false, RC_OCEAN_SPIDER_HOUSE_WALLET));
+ true, RC_OCEAN_SPIDER_HOUSE_WALLET));
CustomMessage::LoadCustomMessageIntoFont(entry);
*loadFromMessageTable = false;