diff options
| author | aMannus <mannusmenting@gmail.com> | 2026-05-29 04:14:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-29 02:14:17 +0000 |
| commit | dc4b27d65a8e09623110127a3478f0917250449e (patch) | |
| tree | 5f0afe1e36211bc1e6a09d86a0afdb5123d85404 | |
| parent | 0dcd52e5c730cce9bd127e250b193a46415c9c03 (diff) | |
Fix gossip stone check (#6648)
| -rw-r--r-- | soh/soh/Enhancements/randomizer/Messages/GossipStoneHints.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/Messages/GossipStoneHints.cpp b/soh/soh/Enhancements/randomizer/Messages/GossipStoneHints.cpp index 7e2a2e193..70d2235a6 100644 --- a/soh/soh/Enhancements/randomizer/Messages/GossipStoneHints.cpp +++ b/soh/soh/Enhancements/randomizer/Messages/GossipStoneHints.cpp @@ -13,7 +13,7 @@ extern PlayState* gPlayState; void BuildHintStoneMessage(uint16_t* textId, bool* loadFromMessageTable) { if ((RAND_GET_OPTION(RSK_GOSSIP_STONE_HINTS).Is(RO_GOSSIP_STONES_NEED_TRUTH) && - Player_GetMask(gPlayState) == PLAYER_MASK_TRUTH) || + Player_GetMask(gPlayState) != PLAYER_MASK_TRUTH) || (RAND_GET_OPTION(RSK_GOSSIP_STONE_HINTS).Is(RO_GOSSIP_STONES_NEED_STONE) && CHECK_QUEST_ITEM(QUEST_STONE_OF_AGONY) == 0)) { return; |
