forked from minetest-mods/craftguide
Update template
This commit is contained in:
parent
36878ce9a0
commit
c32feb44fc
4
init.lua
4
init.lua
|
@ -1218,7 +1218,7 @@ local function register_drops(name, def)
|
||||||
craftguide.register_craft({
|
craftguide.register_craft({
|
||||||
type = "digging",
|
type = "digging",
|
||||||
items = {name},
|
items = {name},
|
||||||
output = item .. " " .. count,
|
output = fmt("%s %u", item, count),
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1226,7 +1226,7 @@ local function register_drops(name, def)
|
||||||
craftguide.register_craft({
|
craftguide.register_craft({
|
||||||
type = "digging_chance",
|
type = "digging_chance",
|
||||||
items = {name},
|
items = {name},
|
||||||
output = item .. " " .. count,
|
output = fmt("%s %u", item, count),
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -21,12 +21,6 @@ Show recipe(s) of the pointed node=
|
||||||
No node pointed=
|
No node pointed=
|
||||||
You don't know a recipe or usage for this item=
|
You don't know a recipe or usage for this item=
|
||||||
No recipe or usage for this item=
|
No recipe or usage for this item=
|
||||||
Node=
|
|
||||||
Entity=
|
|
||||||
Craftitem=
|
|
||||||
Tool=
|
|
||||||
Name=
|
Name=
|
||||||
Type=
|
Digging=
|
||||||
Groups=
|
Digging Chance=
|
||||||
Unknown=
|
|
||||||
None=
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user