mirror of
https://github.com/MCLx86/xtreemtest.git
synced 2025-01-18 22:18:44 +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
|