forked from nalc/homedecor_modpack
		
	Merge pull request #325 from FozLand/flip_gate
Resolve undeclared globals in calls to flip_gate.
This commit is contained in:
		| @@ -392,7 +392,7 @@ for i in ipairs(gates_list) do | |||||||
| 		end, | 		end, | ||||||
|         mesecons = { |         mesecons = { | ||||||
|             effector = { |             effector = { | ||||||
|                 action_on = function(pos,node) homedecor.flip_gate(pos,node,player,gate, "closed") end |                 action_on = function(pos,node) homedecor.flip_gate(pos,node,nil,gate, "closed") end | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
| 	} | 	} | ||||||
| @@ -420,7 +420,7 @@ for i in ipairs(gates_list) do | |||||||
|         return itemstack |         return itemstack | ||||||
| 	end | 	end | ||||||
|     def.mesecons.effector = { |     def.mesecons.effector = { | ||||||
|         action_off = function(pos,node) homedecor.flip_gate(pos,node,player,gate, "open") end |         action_off = function(pos,node) homedecor.flip_gate(pos,node,nil,gate, "open") end | ||||||
|     } |     } | ||||||
|  |  | ||||||
| 	minetest.register_node("homedecor:gate_"..gate.."_open", def) | 	minetest.register_node("homedecor:gate_"..gate.."_open", def) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user