mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-04 16:55:06 +00:00
Fix incorrect node drops of powered rails
This commit is contained in:
parent
2f32c76013
commit
3980beff1d
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,7 @@ register_rail("mcl_minecarts:golden_rail_on",
|
|||
offstate = "mcl_minecarts:golden_rail",
|
||||
},
|
||||
},
|
||||
drop = "mcl_minecarts:golden_rail",
|
||||
},
|
||||
false
|
||||
)
|
||||
|
@ -103,6 +104,7 @@ register_rail("mcl_minecarts:activator_rail_on",
|
|||
offstate = "mcl_minecarts:activator_rail",
|
||||
},
|
||||
},
|
||||
drop = "mcl_minecarts:activator_rail",
|
||||
},
|
||||
false
|
||||
)
|
||||
|
@ -132,6 +134,7 @@ register_rail("mcl_minecarts:detector_rail_on",
|
|||
state = mesecon.state.on,
|
||||
},
|
||||
},
|
||||
drop = "mcl_minecarts:detector_rail",
|
||||
},
|
||||
false
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue