From c56a8edba1b36f323f9bfa7976b33bbf693ec88d Mon Sep 17 00:00:00 2001 From: Andyauk <47583709+Andyauk@users.noreply.github.com> Date: Sun, 22 Oct 2023 23:43:27 +0100 Subject: [PATCH] Remove extra Config Remove extra Config --- client/weapdraw.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/weapdraw.lua b/client/weapdraw.lua index 1cf64066..1bea01fa 100644 --- a/client/weapdraw.lua +++ b/client/weapdraw.lua @@ -127,8 +127,8 @@ local function checkWeapon(newWeap) end local function isWeaponHolsterable(weap) - for i = 1, #Config.Config.WeapDraw.weapons do - if joaat(Config.Config.WeapDraw.weapons[i]) == weap then + for i = 1, #Config.WeapDraw.weapons do + if joaat(Config.WeapDraw.weapons[i]) == weap then return true end end @@ -335,4 +335,4 @@ function CeaseFire() Wait(0) end end) -end \ No newline at end of file +end