From da393d739146a600149068aaacac95e0913e358c Mon Sep 17 00:00:00 2001 From: Dario Date: Sat, 24 Jan 2026 15:08:25 -0300 Subject: [PATCH] Add turning off state to christmas tree. --- patches/specific_actor_patches.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/specific_actor_patches.c b/patches/specific_actor_patches.c index b97f738..798d5aa 100644 --- a/patches/specific_actor_patches.c +++ b/patches/specific_actor_patches.c @@ -159,8 +159,8 @@ RECOMP_PATCH Actor *actor_draw(ActorMarker *marker, Gfx **gfx, Mtx **mtx, Vtx ** // @recomp Check for the xmas tree model if (marker->modelId == ASSET_488_MODEL_XMAS_TREE) { - // @recomp Check that the lights are currently turning on / flickering - if (this->state == 2 || this->state == 3) { + // @recomp Check that the lights are currently turning on, flickering or turning off. + if (this->state == 2 || this->state == 3 || this->state == 5) { // @recomp Skip interpolation cur_drawn_model_skip_interpolation = TRUE; }