Fixed typo in minehost.

This commit is contained in:
Harrison Deng 2021-05-03 14:22:05 -05:00
parent d0ba5a96de
commit ddb56235ed

View File

@ -113,7 +113,7 @@ local function listenToMiners()
while running do
local event, side, sendChannel, replyChannel, serialized, distance = os.pullEvent("modem_message")
print("")
local data = textutils.unserialise(serialised)
local data = textutils.unserialise(serialized)
if data["token"] == TOKEN and data["recipient"] == HOST then
handleMessage(data["sender"], data["type"], data)
else