From 92bfb32c1210dee28ad9efcf61ffac9cd6fe41af Mon Sep 17 00:00:00 2001 From: Kasey FItton Date: Sat, 16 Nov 2024 01:00:13 +0000 Subject: [PATCH] fix(skinchanger): wrong operator --- [core]/skinchanger/client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/[core]/skinchanger/client/main.lua b/[core]/skinchanger/client/main.lua index 3d0722f6..67be80d5 100644 --- a/[core]/skinchanger/client/main.lua +++ b/[core]/skinchanger/client/main.lua @@ -104,7 +104,7 @@ function SkinChanger:ValidClothes(key) ["blemishes_2"] = true, ["blemishes_3"] = true, ["blush_1"] = true, ["blush_2"] = true, ["blush_3"] = true, ["complexion_1"] = true, ["complexion_2"] = true, ["sun_1"] = true, ["sun_2"] = true, ["moles_1"] = true, ["moles_2"] = true, ["chest_1"] = true, ["chest_2"] = true, ["chest_3"] = true, ["bodyb_1"] = true, ["bodyb_2"] = true, ["bodyb_3"] = true, ["bodyb_4"] = true} - return keys[key] ~= nil + return keys[key] == nil end local function Normalise(weight, divison)