Back out stubbed hints system for now.

This commit is contained in:
Aaron Suen 2018-11-03 21:00:38 -04:00
parent d042609b85
commit 41f4cbcbc8
2 changed files with 0 additions and 24 deletions

View File

@ -1,23 +0,0 @@
-- LUALOCALS < ---------------------------------------------------------
local nodecore
= nodecore
-- LUALOCALS > ---------------------------------------------------------
--[[
hint = {
name = "...",
req = { ...matchspec ... },
pass = { ...matchspec ... },
text = "..."
}
matchspec = {
["know:node:name"] = true,
["have:node:name"] = false,
...
}
--]]
nodecore.register_hint, nodecore.registered_hints = nodecore.mkreg()
function nodecore.get_hints(player)
end

View File

@ -11,7 +11,6 @@ rawset(_G, "nodecore", nodecore)
local path = minetest.get_modpath(modname) local path = minetest.get_modpath(modname)
dofile(path .. "/utils.lua") dofile(path .. "/utils.lua")
dofile(path .. "/hints.lua")
dofile(path .. "/node_on_register.lua") dofile(path .. "/node_on_register.lua")
dofile(path .. "/node_drop_in_place.lua") dofile(path .. "/node_drop_in_place.lua")