1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-22 17:40:23 +02:00

Updated homedecor_modpack

This commit is contained in:
LeMagnesium
2015-01-10 21:42:49 +01:00
parent 1a14e9ab91
commit 0048532fac
2029 changed files with 29720 additions and 1534 deletions

9
mods/homedecor_modpack/computer/miscitems.lua Executable file → Normal file
View File

@ -5,12 +5,11 @@
-- This file defines some items in order to not have to depend on other mods.
-- Boilerplate to support localized strings if intllib mod is installed.
local S;
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua");
S = intllib.Getter(minetest.get_current_modname());
local S
if minetest.get_modpath("intllib") then
S = intllib.Getter()
else
S = function ( s ) return s; end
S = function(s) return s end
end
if (not minetest.get_modpath("homedecor")) then