mirror of
				https://github.com/sbrl/Minetest-WorldEditAdditions
				synced 2025-10-31 12:13:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			663 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			663 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Overrides worldedit.player_notify() to add the ability to
 | |
| -- suppress messages (used in //subdivide)
 | |
| 
 | |
| local player_notify_suppressed = {}
 | |
| 
 | |
| local orig_player_notify = worldedit.player_notify
 | |
| function worldedit.player_notify(name, message)
 | |
| 	if not player_notify_suppressed[name] then
 | |
| 		orig_player_notify(name, message)
 | |
| 	end
 | |
| end
 | |
| 
 | |
| --- Disables sending worldedit messages to the player with the given name.
 | |
| function worldedit.player_notify_suppress(name)
 | |
| 	player_notify_suppressed[name] = true
 | |
| end
 | |
| --- Enables sending worldedit messages to the player with the given name.
 | |
| function worldedit.player_notify_unsuppress(name)
 | |
| 	player_notify_suppressed[name] = nil
 | |
| end
 |