diff options
| author | Garrett Cox <garrettjcox@gmail.com> | 2026-02-22 07:14:20 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-22 07:14:20 -0600 |
| commit | e9aab9a2899e8b0e3cc209f1b7add921704e63b0 (patch) | |
| tree | 85aec6f58a5b8308e5613f3919ed566acc9fc3c9 | |
| parent | 4eadf7bb9ed93787a01692ad4f1a7485555e7df1 (diff) | |
Exclude tatl text in termina field near great bay (#1569)
| -rw-r--r-- | mm/2s2h/Enhancements/Cutscenes/MiscInteractions/SkipTatlInterrupts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/2s2h/Enhancements/Cutscenes/MiscInteractions/SkipTatlInterrupts.cpp b/mm/2s2h/Enhancements/Cutscenes/MiscInteractions/SkipTatlInterrupts.cpp index 8bfe2b754..d76bb08b7 100644 --- a/mm/2s2h/Enhancements/Cutscenes/MiscInteractions/SkipTatlInterrupts.cpp +++ b/mm/2s2h/Enhancements/Cutscenes/MiscInteractions/SkipTatlInterrupts.cpp @@ -61,8 +61,8 @@ void RegisterSkipTatlInterrupts() { // General interupt (6) (the flags were directly copied from the original code) COND_VB_SHOULD(VB_TATL_INTERRUPT_MSG6, CVAR, { - if (*should) { - Actor* actor = va_arg(args, Actor*); + Actor* actor = va_arg(args, Actor*); + if (*should && actor->csId != -1 && actor->csId != 124) { *should = false; switch (actor->textId) { case 0x224: |
