1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-28 15:30:28 +02:00
minetest/builtin/client/misc.lua

8 lines
150 B
Lua
Raw Normal View History

function core.setting_get_pos(name)
local value = core.settings:get(name)
if not value then
return nil
end
return core.string_to_pos(value)
end