From 45cbfc72fe5ee0b98e110ffd4f6cfac1ff481d4d Mon Sep 17 00:00:00 2001 From: ModdedMarionette <87785920+ModdedMarionette@users.noreply.github.com> Date: Wed, 5 Nov 2025 20:17:19 -0500 Subject: [PATCH] Update to script: Last Stand key press change Requiring the player to crouch in addition to pressing the melee key in order to activate Last Stand. --- .../infection/scripts/vscripts/challenge_asw_infection_base.nut | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactivedrop/content/infection/scripts/vscripts/challenge_asw_infection_base.nut b/reactivedrop/content/infection/scripts/vscripts/challenge_asw_infection_base.nut index db350e4ab..84f34bd89 100644 --- a/reactivedrop/content/infection/scripts/vscripts/challenge_asw_infection_base.nut +++ b/reactivedrop/content/infection/scripts/vscripts/challenge_asw_infection_base.nut @@ -215,7 +215,7 @@ function Update() if (hMarine && hMarine in g_teamHuman && !(hMarine in g_lastHuman)) { local nButtons = NetProps.GetPropInt( hPlayer, "m_nButtons" ); - if (nButtons & 16384) + if (nButtons & 278528) { UseLastStand(hMarine); }