From 9b9cab34379af25cce4ca66dd8bf232fed1afc60 Mon Sep 17 00:00:00 2001 From: nick Date: Mon, 23 Feb 2026 17:46:35 -0500 Subject: [PATCH] fixed --- game_patch/hud/multi_spectate.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/game_patch/hud/multi_spectate.cpp b/game_patch/hud/multi_spectate.cpp index 090527a2..0cd3bde9 100644 --- a/game_patch/hud/multi_spectate.cpp +++ b/game_patch/hud/multi_spectate.cpp @@ -85,7 +85,8 @@ static bool state_animation_is_crouch(int state) FunHook spectate_entity_set_next_state_anim_hook{ 0x0042A580, [](rf::Entity* entity, int state_anim_index, float transition_time) { - if (g_spectate_mode_enabled && g_spectate_mode_target && rf::entity_is_crouching(entity)) { + if (g_spectate_mode_enabled && g_spectate_mode_target && rf::entity_is_crouching(entity) + && entity->current_state_anim != rf::ENTITY_STATE_FREEFALL) { rf::Entity* target = rf::entity_from_handle(g_spectate_mode_target->entity_handle); if (entity == target) { spectate_entity_translate_stand_state_to_crouch_state(&state_anim_index); @@ -106,7 +107,8 @@ void multi_spectate_sync_crouch_anim() if (!entity) return; - if (rf::entity_is_crouching(entity) && !state_animation_is_crouch(entity->current_state_anim)) { + if (rf::entity_is_crouching(entity) && !state_animation_is_crouch(entity->current_state_anim) + && entity->current_state_anim != rf::ENTITY_STATE_FREEFALL) { int next_state_anim = entity->current_state_anim; spectate_entity_translate_stand_state_to_crouch_state(&next_state_anim); if (next_state_anim == entity->current_state_anim) {