From 17e36e08c76f12191e4f0892ce85ace37f6f82f1 Mon Sep 17 00:00:00 2001 From: ineed bots Date: Mon, 18 Apr 2022 15:00:49 -0600 Subject: [PATCH] Fix scr errors with missing perk in table --- userraw/maps/mp/bots/_bot_utility.gsc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userraw/maps/mp/bots/_bot_utility.gsc b/userraw/maps/mp/bots/_bot_utility.gsc index 25bb9cf..aa56208 100644 --- a/userraw/maps/mp/bots/_bot_utility.gsc +++ b/userraw/maps/mp/bots/_bot_utility.gsc @@ -2794,7 +2794,7 @@ botGiveLoadout( team, class, allowCopycat ) if ( !allowOp ) { - loadoutDeathstreak = "specialty_none"; + loadoutDeathstreak = "specialty_null"; if ( loadoutPrimary == "riotshield" ) loadoutPrimary = "m4"; @@ -2806,10 +2806,10 @@ botGiveLoadout( team, class, allowCopycat ) loadoutPrimaryAttachment = "none"; if ( loadoutPerk2 == "specialty_coldblooded" ) - loadoutPerk2 = "specialty_none"; + loadoutPerk2 = "specialty_null"; if ( loadoutPerk3 == "specialty_localjammer" ) - loadoutPerk3 = "specialty_none"; + loadoutPerk3 = "specialty_null"; }