server-master/srcs/WingsAPI.Game/Networking/Broadcasting/SpeakerHeroBroadcast.cs
2026-02-10 18:21:30 +01:00

6 lines
No EOL
195 B
C#

namespace WingsEmu.Game.Networking.Broadcasting;
public class SpeakerHeroBroadcast : IBroadcastRule
{
public bool Match(IClientSession session) => !session.PlayerEntity.HeroChatBlocked;
}