mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-29 22:30:23 +02:00
Version MFF.
This commit is contained in:
8
mesecons_extrawires/vertical.lua
Normal file → Executable file
8
mesecons_extrawires/vertical.lua
Normal file → Executable file
@ -90,7 +90,7 @@ mesecon.register_node("mesecons_extrawires:vertical", {
|
||||
after_dig_node = vertical_update
|
||||
},{
|
||||
tiles = {"mesecons_wire_off.png"},
|
||||
groups = {dig_immediate=3},
|
||||
groups = {dig_immediate=2}, --MFF
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.off,
|
||||
onstate = "mesecons_extrawires:vertical_on",
|
||||
@ -98,7 +98,7 @@ mesecon.register_node("mesecons_extrawires:vertical", {
|
||||
}}
|
||||
},{
|
||||
tiles = {"mesecons_wire_on.png"},
|
||||
groups = {dig_immediate=3, not_in_creative_inventory=1},
|
||||
groups = {dig_immediate=2, not_in_creative_inventory=1}, --MFF
|
||||
mesecons = {conductor = {
|
||||
state = mesecon.state.on,
|
||||
offstate = "mesecons_extrawires:vertical_off",
|
||||
@ -113,7 +113,7 @@ mesecon.register_node("mesecons_extrawires:vertical_top", {
|
||||
walkable = false,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
groups = {dig_immediate=3, not_in_creative_inventory=1},
|
||||
groups = {dig_immediate=2, not_in_creative_inventory=1}, --MFF
|
||||
selection_box = top_box,
|
||||
node_box = top_box,
|
||||
is_vertical_conductor = true,
|
||||
@ -143,7 +143,7 @@ mesecon.register_node("mesecons_extrawires:vertical_bottom", {
|
||||
walkable = false,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
groups = {dig_immediate = 3, not_in_creative_inventory = 1},
|
||||
groups = {dig_immediate = 2, not_in_creative_inventory = 1}, --MFF
|
||||
selection_box = bottom_box,
|
||||
node_box = bottom_box,
|
||||
is_vertical_conductor = true,
|
||||
|
Reference in New Issue
Block a user