mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-22 19:03:43 +01:00
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({
|
||||
type = "digging",
|
||||
items = {name},
|
||||
output = item .. " " .. count,
|
||||
output = fmt("%s %u", item, count),
|
||||
})
|
||||
end
|
||||
|
||||
@ -1226,7 +1226,7 @@ local function register_drops(name, def)
|
||||
craftguide.register_craft({
|
||||
type = "digging_chance",
|
||||
items = {name},
|
||||
output = item .. " " .. count,
|
||||
output = fmt("%s %u", item, count),
|
||||
})
|
||||
end
|
||||
end
|
||||
|
@ -21,12 +21,6 @@ Show recipe(s) of the pointed node=
|
||||
No node pointed=
|
||||
You don't know a recipe or usage for this item=
|
||||
No recipe or usage for this item=
|
||||
Node=
|
||||
Entity=
|
||||
Craftitem=
|
||||
Tool=
|
||||
Name=
|
||||
Type=
|
||||
Groups=
|
||||
Unknown=
|
||||
None=
|
||||
Digging=
|
||||
Digging Chance=
|
||||
|
Loading…
Reference in New Issue
Block a user