From 94e3332315f3cae60579250be458574913951812 Mon Sep 17 00:00:00 2001 From: Phi Tiet Date: Tue, 24 Mar 2026 09:37:11 +0100 Subject: [PATCH] [TF2] Fix holiday lights not disabled when grappling hooks are enabled outside Mannpower --- src/game/client/c_rope.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/c_rope.cpp b/src/game/client/c_rope.cpp index cbc724e7915..07a9eb259cd 100644 --- a/src/game/client/c_rope.cpp +++ b/src/game/client/c_rope.cpp @@ -646,7 +646,7 @@ bool CRopeManager::IsHolidayLightMode( void ) { // We don't want to draw the lights for the grapple. // They get left behind for a while and look bad. - if ( TFGameRules()->IsPowerupMode() || !TFGameRules()->GetRopesHolidayLightsAllowed() ) + if ( TFGameRules()->IsPowerupMode() || TFGameRules()->IsUsingGrapplingHook() || !TFGameRules()->GetRopesHolidayLightsAllowed() ) { return false; }