mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-03 00:30:36 +02:00
Fix drops for active machines
Active machine nodes need to drop their inactive counterpart. Some were missing that declaration.
This commit is contained in:
@ -84,6 +84,7 @@ function technic.register_electric_furnace(data)
|
||||
"technic_"..ltier.."_electric_furnace_side.png",
|
||||
"technic_"..ltier.."_electric_furnace_front_active.png"},
|
||||
paramtype2 = "facedir",
|
||||
drop = "technic:"..ltier.."_electric_furnace",
|
||||
groups = active_groups,
|
||||
light_source = 8,
|
||||
legacy_facedir_simple = true,
|
||||
|
@ -76,6 +76,7 @@ function technic.register_grinder(data)
|
||||
"technic_"..ltier.."_grinder_side.png", "technic_"..ltier.."_grinder_side.png",
|
||||
"technic_"..ltier.."_grinder_side.png", "technic_"..ltier.."_grinder_front_active.png"},
|
||||
paramtype2 = "facedir",
|
||||
drop = "technic:"..ltier.."_grinder",
|
||||
groups = active_groups,
|
||||
legacy_facedir_simple = true,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
|
Reference in New Issue
Block a user