From 720e826d4d06e4e39f9e7558edd3019116df68cb Mon Sep 17 00:00:00 2001 From: Robin Malley Date: Wed, 23 Nov 2022 22:11:40 +0000 Subject: [PATCH] Remove extranious print --- src/lua/util.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lua/util.lua b/src/lua/util.lua index 786e343..54b7664 100644 --- a/src/lua/util.lua +++ b/src/lua/util.lua @@ -115,7 +115,6 @@ end --hex encoded string to arbitrary data function util.decode_unlisted(str) - print("str was:",str) local output = {} for byte in str:gmatch("%x%x") do table.insert(output, string.char(tonumber(byte,16)))