mirror of
				https://github.com/minetest-mods/mesecons.git
				synced 2025-11-04 12:55:29 +01:00 
			
		
		
		
	Handle luacontroller formspec events correctly
Example of problem fixed by this: Edit lua code, press Execute. Now (execute button has focus), hold down a key. Zillions of "program" events are generated.
This commit is contained in:
		@@ -518,7 +518,7 @@ minetest.register_node(nodename, {
 | 
			
		||||
	node_box = nodebox,
 | 
			
		||||
	on_construct = reset_meta,
 | 
			
		||||
	on_receive_fields = function(pos, formname, fields)
 | 
			
		||||
		if fields.quit then
 | 
			
		||||
		if not fields.program then
 | 
			
		||||
			return
 | 
			
		||||
		end
 | 
			
		||||
		reset(pos)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user