mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-01-30 23:10:14 -05:00
Rando: GtG and carpenter prompts skip (#663)
* Skip gtg and carpenter prompt For rando. Tested and just works. * Fixed missing break
This commit is contained in:
parent
c9fdf8a480
commit
2159c006fc
@ -252,12 +252,18 @@ void func_80B3A4F8(EnWonderTalk2* this, GlobalContext* globalCtx) {
|
||||
}
|
||||
this->unk_158 = 0;
|
||||
if (!this->unk_156) {
|
||||
// whether or not to skip the text in rando
|
||||
// Whether or not to skip the text in rando
|
||||
bool randoSkipText = false;
|
||||
if (gSaveContext.n64ddFlag) {
|
||||
// scenes for which all of this type of wonder talk should be skipped.
|
||||
switch (globalCtx->sceneNum) {
|
||||
case 0x0007: //shadow temple
|
||||
// Scenes for which all of this type of wonder talk should be skipped.
|
||||
switch (globalCtx->sceneNum) {
|
||||
case 0x0007: // Shadow Temple
|
||||
randoSkipText = true;
|
||||
break;
|
||||
case 0x000B: // Gerudo Training Grounds
|
||||
randoSkipText = true;
|
||||
break;
|
||||
case 0x000C: // Inside Gerudo Fortress
|
||||
randoSkipText = true;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user