diff options
| author | Jordan Longstaff <JordanLongstaff@users.noreply.github.com> | 2024-12-15 16:00:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-15 14:00:43 -0700 |
| commit | 0f167d119b54773c3b87f994ea25e71d0a50e92e (patch) | |
| tree | 9ec6a4dade493372b769f3efceef6ee3148f5916 | |
| parent | 1cf33199361cda4466b298661b92d2d08e4bb71a (diff) | |
Skip Biggoron's waking up cutscene (#4689)
* Skip Biggoron's waking up cutscene
* Allow fast speaking and trading
| -rw-r--r-- | soh/soh/Enhancements/timesaver_hook_handlers.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/soh/soh/Enhancements/timesaver_hook_handlers.cpp b/soh/soh/Enhancements/timesaver_hook_handlers.cpp index d765d6785..dbfca709c 100644 --- a/soh/soh/Enhancements/timesaver_hook_handlers.cpp +++ b/soh/soh/Enhancements/timesaver_hook_handlers.cpp @@ -288,6 +288,12 @@ void TimeSaverOnVanillaBehaviorHandler(GIVanillaBehavior id, bool* should, va_li RateLimitedSuccessChime(); break; } + case ACTOR_EN_GO2: { + EnGo2* biggoron = (EnGo2*)actor; + biggoron->isAwake = true; + *should = false; + break; + } case ACTOR_BG_HIDAN_FWBIG: case ACTOR_EN_EX_ITEM: case ACTOR_EN_DNT_NOMAL: |
