Notify channel on player presence

This commit is contained in:
2024-11-28 16:35:56 +01:00
parent 775f6ae076
commit 86a4daaceb

View File

@@ -265,6 +265,7 @@ aura_env.Notify = function(player)
end
local msg = MakeNotifyMessage(player)
NotifyAll(msg)
aura_env.NotifyChannel(player)
end
---@param player Player
@@ -276,6 +277,7 @@ aura_env.NotifyGone = function(player)
local msg = string.format("%s of class %s and guild %s left %s", player.name, player.class, player.guild,
player.zone)
NotifyAll(msg)
aura_env.NotifyChannelGone(player)
end
-- CHANNEL fuckery