mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
wea.format.map: use tostring on values to avoid crashes
This commit is contained in:
parent
239113d415
commit
ad8d8eab6b
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
function worldeditadditions.format.map(map)
|
||||
local result = {}
|
||||
for key, value in pairs(map) do
|
||||
table.insert(result, key.."\t"..value)
|
||||
table.insert(result, key.."\t"..tostring(value))
|
||||
end
|
||||
return table.concat(result, "\n")
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue