repo.or.cz
/
minetest_tt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove builtin snippets
[minetest_tt.git]
/
snippets_core.lua
blob
44af9d66ea912dce3e766459f33a80f07bfcbdcc
1
-- CORE SNIPPETS --
2
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
)
10
11