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)))