fix a typo causing "undeclared global t" warning

This commit is contained in:
whosit 2025-03-30 21:46:57 +03:00
parent 7409e20a89
commit a80c8eb66b

View File

@ -164,7 +164,7 @@ oir(radius) -- return iterator for objects around you
table.sort(keys)
core.chat_send_player(player_name, table.concat(keys, ',\n'))
else
core.chat_send_player(player_name, string.format("Not a table: %s", dump(t)))
core.chat_send_player(player_name, string.format("Not a table: %s", dump(o)))
end
end,
--dump = repl_dump,