increase the length of messages in history

This commit is contained in:
whosit 2023-05-30 08:29:29 +03:00
parent 4004eb9ce5
commit 421bc76081

View File

@ -561,7 +561,7 @@ _format_recent_dropbox = function(playername)
for _, v in ipairs(logs) do
local item = string.format("%d,%d,%d | %s",
v.pos.x, v.pos.y, v.pos.z,
v.message:sub(1,50))
v.message:sub(1,100))
table.insert(out, minetest.formspec_escape(item))
end