diff options
Diffstat (limited to 'extranodes')
| -rw-r--r-- | extranodes/init.lua | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/extranodes/init.lua b/extranodes/init.lua index 2b04812..6f96217 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -1,12 +1,7 @@  -- Minetest 0.4.6 mod: extranodes  -- namespace: technic  -- Boilerplate to support localized strings if intllib mod is installed. -local S -if rawget(_G, "intllib") then -	S = intllib.Getter() -else -	S = function(s) return s end -end +local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end  -- register stairsplus/circular_saw nodes  -- we skip blast resistant concrete and uranium intentionally  | 
