Skip Goron Link's forced dialogue (#4688)

* Skip Goron Link's forced dialogue

* Rename VB flag
This commit is contained in:
Jordan Longstaff
2024-12-16 00:15:31 -05:00
committed by GitHub
parent add5347126
commit 2a3bdca8a2
3 changed files with 19 additions and 2 deletions

View File

@@ -1768,8 +1768,10 @@ void EnGo2_GroundRolling(EnGo2* this, PlayState* play) {
if (this->unk_59C == 0) {
switch (this->actor.params & 0x1F) {
case GORON_CITY_LINK:
this->goronState = 0;
this->actionFunc = EnGo2_GoronLinkStopRolling;
if (GameInteractor_Should(VB_GORON_LINK_BE_SCARED, true, this)) {
this->goronState = 0;
this->actionFunc = EnGo2_GoronLinkStopRolling;
}
break;
case GORON_CITY_ROLLING_BIG:
EnGo2_WakeUp(this, play);