Aleksei-bird 7c9c708c92 Первый фикс
Пачки некоторых позиций увеличены
2024-03-01 20:54:33 +03:00

12 lines
289 B
Lua

local math = require("__flib__.math")
return function(player)
if not global.players[player.index].settings.show_position then
return
end
local position = player.position
return { "", { "statsgui.position" }, " = ", math.round(position.x), ", ", math.round(position.y) }
end