mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-07 08:41:06 +01:00
12 lines
195 B
Lua
12 lines
195 B
Lua
|
-- CORE 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)
|
||
|
|
||
|
|