From 144bda298d250bde62f174809f21397dcace12d5 Mon Sep 17 00:00:00 2001 From: thunderdog1138 Date: Mon, 21 Sep 2020 20:41:41 +0000 Subject: [PATCH] Delete 'mods/mobs_npc/init.lua' --- mods/mobs_npc/init.lua | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 mods/mobs_npc/init.lua diff --git a/mods/mobs_npc/init.lua b/mods/mobs_npc/init.lua deleted file mode 100644 index 31459673..00000000 --- a/mods/mobs_npc/init.lua +++ /dev/null @@ -1,33 +0,0 @@ - -local path = minetest.get_modpath("mobs_npc") - --- Intllib -local S -if minetest.get_modpath("intllib") then - S = intllib.Getter() -else - S = function(s, a, ...) - if a == nil then - return s - end - a = {a, ...} - return s:gsub("(@?)@(%(?)(%d+)(%)?)", - function(e, o, n, c) - if e == ""then - return a[tonumber(n)] .. (o == "" and c or "") - else - return "@" .. o .. n .. c - end - end) - end -end -mobs.intllib = S - --- NPC -dofile(path .. "/npc.lua") -- TenPlus1 -dofile(path .. "/trader.lua") -dofile(path .. "/igor.lua") - -dofile(path .. "/lucky_block.lua") - -print (S("[MOD] Mobs Redo NPCs loaded"))