Move string and bone to mcl_mobitems
This commit is contained in:
parent
357b6e01cb
commit
76cf02909b
12 changed files with 34 additions and 42 deletions
|
@ -149,7 +149,7 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_dye:bone_block",
|
||||
output = "mcl_core:bone_block",
|
||||
recipe = {
|
||||
{ "mcl_dye:white", "mcl_dye:white", "mcl_dye:white" },
|
||||
{ "mcl_dye:white", "mcl_dye:white", "mcl_dye:white" },
|
||||
|
@ -1009,12 +1009,3 @@ minetest.register_craft({
|
|||
recipe = "mcl_core:stick",
|
||||
burntime = 5,
|
||||
})
|
||||
|
||||
--
|
||||
--Temporary
|
||||
-- TODO: Remove when string is ready
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:string",
|
||||
recipe = {{"mcl_core:paper",},
|
||||
{"mcl_core:paper"}},
|
||||
})
|
||||
|
|
|
@ -111,13 +111,6 @@ minetest.register_craftitem("mcl_core:gunpowder", {
|
|||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:bone", {
|
||||
description = "Bone",
|
||||
inventory_image = "default_bone.png",
|
||||
stack_max = 64,
|
||||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:glowstone_dust", {
|
||||
description = "Glowstone Dust",
|
||||
inventory_image = "default_glowstone_dust.png",
|
||||
|
@ -132,13 +125,6 @@ minetest.register_craftitem("mcl_core:sugar", {
|
|||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:string",{
|
||||
description = "String",
|
||||
inventory_image = "default_string.png",
|
||||
stack_max = 64,
|
||||
groups = { craftitem = 1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:bowl",{
|
||||
description = "Bowl",
|
||||
inventory_image = "default_bowl.png",
|
||||
|
|
|
@ -1676,6 +1676,6 @@ minetest.register_node("mcl_core:cobweb", {
|
|||
liquid_range = 0,
|
||||
walkable = false,
|
||||
groups = {snappy=1,liquid=3,deco_block=1},
|
||||
drop = "mcl_core:string",
|
||||
drop = "mcl_mobitems:string",
|
||||
})
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 256 B |
Binary file not shown.
Before Width: | Height: | Size: 230 B |
Loading…
Add table
Add a link
Reference in a new issue