mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 07:40:37 +02:00
reduce intllib code
This commit is contained in:
@ -16,12 +16,8 @@ local modpath = minetest.get_modpath("technic")
|
||||
technic.modpath = modpath
|
||||
|
||||
-- Boilerplate to support intllib
|
||||
if rawget(_G, "intllib") then
|
||||
technic.getter = intllib.Getter()
|
||||
else
|
||||
technic.getter = function(s) return s end
|
||||
end
|
||||
local S = technic.getter
|
||||
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
|
||||
technic.getter = S
|
||||
|
||||
-- Read configuration file
|
||||
dofile(modpath.."/config.lua")
|
||||
|
Reference in New Issue
Block a user