From 3cf489dc3c0b861c24f28a9dc27ba45c5a35dfb9 Mon Sep 17 00:00:00 2001 From: Foereaper Date: Tue, 2 Aug 2022 20:26:08 +0200 Subject: [PATCH] Remove unnecessary key declaration --- Client/CMH.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/CMH.lua b/Client/CMH.lua index 20180de..263cfb5 100644 --- a/Client/CMH.lua +++ b/Client/CMH.lua @@ -75,7 +75,7 @@ local function ProcessVariables(reqId, ...) local arg = {...} local msg = "" - for k, v in pairs(arg) do + for _, v in pairs(arg) do if(type(v) == "string") then -- Special case for empty string parsing if(#v == 0) then