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

6 lines
No EOL
194 B
C#

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