mirror of
https://github.com/acmgit/mesecons_stealthnode.git
synced 2024-11-21 23:03:53 +01:00
24 lines
617 B
Lua
24 lines
617 B
Lua
--[[
|
|
********************************************
|
|
*** Mesecons Stealthnodes ***
|
|
********************************************
|
|
|
|
A mod for Minetest to register various ghoststones and conducting stones.
|
|
|
|
]]--
|
|
|
|
stealthnode = {}
|
|
stealthnode.version = "1"
|
|
stealthnode.revision = "6"
|
|
|
|
local modpath = minetest.get_modpath("mesecons_stealthnode")
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
stealthnode.S = S
|
|
|
|
dofile(modpath .. "/register.lua")
|
|
dofile(modpath .. "/nodes.lua")
|
|
|
|
print("[MOD] Mesecons Stealthnodes loaded.")
|
|
minetest.log("info", "[MOD] Mesecons Stealthnodes loaded.")
|