mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-01 07:22:40 +00:00
11 lines
197 B
Lua
11 lines
197 B
Lua
-- CUSTOM SNIPPETS --
|
|
|
|
-- Custom text (_tt_help)
|
|
tt.register_snippet(function(itemstring)
|
|
local def = minetest.registered_items[itemstring]
|
|
if def._tt_help then
|
|
return def._tt_help
|
|
end
|
|
end)
|
|
|
|
|