From a5affb1ea773a52c629847210a7323afa88f4a9a Mon Sep 17 00:00:00 2001 From: VorTechnix <45538536+VorTechnix@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:34:31 -0700 Subject: [PATCH] unbreak worldedit.player_notify --- worldeditadditions_commands/player_notify_suppress.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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