mirror of
https://github.com/minetest/minetest.git
synced 2024-11-24 00:23:46 +01:00
8 lines
150 B
Lua
8 lines
150 B
Lua
|
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
|