mirror of
https://github.com/D00Med/scifi_nodes.git
synced 2025-06-29 22:50:48 +02:00
is ground content revision (#81)
also cleaned up some of the whitespace indentation and one occurance where ';' was being used instead of ','
This commit is contained in:
committed by
GitHub
parent
014ca0179f
commit
49703e7386
@ -46,6 +46,7 @@ minetest.register_node("scifi_nodes:protected_switch_on", {
|
||||
not_in_creative_inventory = 1,
|
||||
mesecon_needs_receiver = 1
|
||||
},
|
||||
is_ground_content = false,
|
||||
mesecons = {
|
||||
receptor = {
|
||||
state = (has_mesecons and mesecon.state.on)
|
||||
@ -73,6 +74,7 @@ minetest.register_node("scifi_nodes:protected_switch_off", {
|
||||
oddly_breakable_by_hand = 1,
|
||||
mesecon_needs_receiver = 1
|
||||
},
|
||||
is_ground_content = false,
|
||||
mesecons = {
|
||||
receptor = {
|
||||
state = (has_mesecons and mesecon.state.off)
|
||||
|
Reference in New Issue
Block a user