mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
6ec6acc539
Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: SmallJoker <SmallJoker@users.noreply.github.com>
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
|