1
0
Fork 0
mirror of https://github.com/sbrl/Minetest-WorldEditAdditions.git synced 2025-04-01 20:24:58 +00:00

Merge branch 'dev' of github.com:sbrl/Minetest-WorldEditAdditions into dev

This commit is contained in:
Starbeamrainbowlabs 2024-10-17 02:40:31 +01:00
commit bed5ec3add
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -4,9 +4,9 @@
local player_notify_suppressed = {} local player_notify_suppressed = {}
local orig_player_notify = worldedit.player_notify local orig_player_notify = worldedit.player_notify
function worldedit.player_notify(name, message) function worldedit.player_notify(name, message, typ)
if not player_notify_suppressed[name] then if not player_notify_suppressed[name] then
orig_player_notify(name, message) orig_player_notify(name, message, typ)
end end
end end