Rename snippets_core.lua
[minetest_tt.git] / snippets.lua
blobfa8341d18b2210b4760bf34d32b0b189ee5b714b
1 -- CUSTOM SNIPPETS --
3 -- Custom text (_tt_help)
4 tt.register_snippet(function(itemstring)
5 local def = minetest.registered_items[itemstring]
6 if def._tt_help then
7 return def._tt_help, false
8 end
9 end)