mirror of
https://github.com/mt-mods/home_workshop_modpack.git
synced 2024-11-13 14:10:23 +01:00
Merge branch 'master' into 'master'
Fix missing paramtype for mesh nodes See merge request VanessaE/home_workshop_modpack!1
This commit is contained in:
commit
eca7c55028
|
@ -14,6 +14,7 @@ minetest.register_node("home_workshop_misc:tool_cabinet", {
|
|||
"home_workshop_common_generic_metal_bright.png",
|
||||
"home_workshop_misc_tool_cabinet_misc.png",
|
||||
},
|
||||
paramtype = "light",
|
||||
paramtype2="facedir",
|
||||
inventory_image = "home_workshop_misc_tool_cabinet_inv.png",
|
||||
on_rotate = minetest.get_modpath("screwdriver") and screwdriver.rotate_simple or nil,
|
||||
|
@ -33,6 +34,7 @@ minetest.register_node("home_workshop_misc:beer_tap", {
|
|||
{ name = "home_workshop_common_generic_metal.png", color = 0xff303030 }
|
||||
},
|
||||
inventory_image = "home_workshop_misc_beertap_inv.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = { snappy=3 },
|
||||
walkable = false,
|
||||
|
@ -70,6 +72,7 @@ minetest.register_node("home_workshop_misc:beer_mug", {
|
|||
mesh = "home_workshop_misc_beer_mug.obj",
|
||||
tiles = { "home_workshop_misc_beer_mug.png" },
|
||||
inventory_image = "home_workshop_misc_beer_mug_inv.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = { snappy=3, oddly_breakable_by_hand=3 },
|
||||
walkable = false,
|
||||
|
@ -93,6 +96,7 @@ minetest.register_node("home_workshop_misc:soda_machine", {
|
|||
drawtype = "mesh",
|
||||
mesh = "home_workshop_misc_soda_machine.obj",
|
||||
tiles = {"home_workshop_misc_soda_machine.png"},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=3},
|
||||
selection_box = svm_cbox,
|
||||
|
|
Loading…
Reference in New Issue
Block a user