Merge pull request #90 from briaguya-ai/fix-the-torch

fix the torch
This commit is contained in:
Garrett Cox 2024-02-21 02:11:07 +00:00 committed by GitHub
commit 4c56583215
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1174,11 +1174,11 @@ s16 OnePointCutscene_Init(PlayState* play, s16 csId, s16 timer, Actor* actor, s1
if (actor != NULL && actor->id != ACTOR_PLAYER) { if (actor != NULL && actor->id != ACTOR_PLAYER) {
if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_ACTOR_CS, true, actor)) { if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_ACTOR_CS, true, actor)) {
return; return SUBCAM_NONE;
} }
} else { } else {
if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_CS, true, &csId)) { if (!GameInteractor_Should(GI_VB_PLAY_ONEPOINT_CS, true, &csId)) {
return; return SUBCAM_NONE;
} }
} }