diff --git a/worldeditadditions_commands/player_notify_suppress.lua b/worldeditadditions_commands/player_notify_suppress.lua index 0544eb8..78968d6 100644 --- a/worldeditadditions_commands/player_notify_suppress.lua +++ b/worldeditadditions_commands/player_notify_suppress.lua @@ -4,9 +4,9 @@ local player_notify_suppressed = {} 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 - orig_player_notify(name, message) + orig_player_notify(name, message, typ) end end