From ccc887133a8295b64378ca91bc22a9a9947892d0 Mon Sep 17 00:00:00 2001 From: Falco Peijnenburg Date: Sat, 16 Mar 2024 20:25:44 +0100 Subject: [PATCH] Remove redundant toString --- gamemode/modules/base/sh_util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamemode/modules/base/sh_util.lua b/gamemode/modules/base/sh_util.lua index 27261971b..75b5cef98 100644 --- a/gamemode/modules/base/sh_util.lua +++ b/gamemode/modules/base/sh_util.lua @@ -114,7 +114,7 @@ function DarkRP.findPlayers(info) continue end - local stringPlayerInfo = string.lower(tostring(PlayerInfo)) + local stringPlayerInfo = string.lower(PlayerInfo) for _, v in ipairs(pls) do -- Prevent duplicates if found[v] then continue end