diff options
Diffstat (limited to 'mesecons_battery')
| -rw-r--r-- | mesecons_battery/init.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/mesecons_battery/init.lua b/mesecons_battery/init.lua index 655442b..b5e50a9 100644 --- a/mesecons_battery/init.lua +++ b/mesecons_battery/init.lua @@ -19,7 +19,7 @@ for i = 1, 5 do  			type = "fixed",  			fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},  		}, -		groups = {dig_immediate=2, mesecon = 2}, +		groups = {dig_immediate=2, mesecon = 2, mesecon_effector_on = 1},  	    	description="Battery",  	})  	mesecon:add_receptor_node_off("mesecons_battery:battery_charging_"..i) @@ -46,7 +46,7 @@ for i = 1, 5 do  			type = "fixed",  			fixed = {-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},  		}, -		groups = {dig_immediate=2,not_in_creative_inventory=1, mesecon = 2}, +		groups = {dig_immediate=2, not_in_creative_inventory=1, mesecon = 2, mesecon_effector_off = 1},  	    	description="Battery",  	})  	mesecon:add_receptor_node("mesecons_battery:battery_discharging_"..i) | 
