fix response data logging

This commit is contained in:
2021-11-02 16:02:26 -05:00
parent a99e8753b7
commit 64b56b6a87
+1 -1
View File
@@ -747,7 +747,7 @@ if (Controls) then
function processResponse(data) function processResponse(data)
local response = "" local response = ""
for k,v in pairs(bytes) do for k,v in pairs(data) do
response = response .. string.pack("B", v) response = response .. string.pack("B", v)
end end
print("Received Packet") print("Received Packet")