mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-08 19:40:21 +01:00
232b274c55
subgame + mods
27 lines
612 B
Lua
Executable File
27 lines
612 B
Lua
Executable File
|
|
-- Extended Ban Mod for Minetest
|
|
-- (C) 2013 Diego Martínez <kaeza>
|
|
-- See `LICENSE.txt' for details.
|
|
|
|
-- conf.lua: Config routines.
|
|
|
|
xban.conf = { }
|
|
|
|
local conf = Settings(minetest.get_worldpath().."/xban.conf")
|
|
|
|
function xban.conf.get(k)
|
|
local v
|
|
v = conf:get(k)
|
|
if v and (v ~= "") then return v end
|
|
v = minetest.setting_get("xban."..k)
|
|
if v and (v ~= "") then return v end
|
|
end
|
|
|
|
function xban.conf.get_bool(k)
|
|
local v
|
|
v = conf:get(k)
|
|
if v and (v ~= "") then return conf:get_bool(k) end
|
|
v = minetest.setting_get("xban."..k)
|
|
if v and (v ~= "") then return minetest.setting_getbool("xban."..k) end
|
|
end
|