mesecons_stealthnode/init.lua

24 lines
618 B
Lua
Raw Permalink Normal View History

2020-10-28 23:17:18 +01:00
--[[
2020-10-29 10:09:30 +01:00
********************************************
*** Mesecons Stealthnodes ***
********************************************
2020-10-28 23:17:18 +01:00
2023-06-07 18:35:21 +02:00
A mod for Minetest to register various ghoststones and conducting stones.
2020-10-28 23:17:18 +01:00
]]--
stealthnode = {}
stealthnode.version = "1"
2023-06-07 18:35:21 +02:00
stealthnode.revision = "6"
2020-10-28 23:17:18 +01:00
2020-10-29 10:09:30 +01:00
local modpath = minetest.get_modpath("mesecons_stealthnodes")
2023-06-07 18:35:21 +02:00
local S = minetest.get_translator(minetest.get_current_modname())
2023-06-07 21:47:38 +02:00
stealthnode.S = S
2020-10-28 23:17:18 +01:00
2020-10-29 10:09:30 +01:00
dofile(modpath .. "/register.lua")
dofile(modpath .. "/nodes.lua")
2020-10-28 23:17:18 +01:00
2020-10-29 10:09:30 +01:00
print("[MOD] Mesecons Stealthnodes loaded.")
minetest.log("info", "[MOD] Mesecons Stealthnodes loaded.")