We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d42c1 commit 015761bCopy full SHA for 015761b
1 file changed
Utils/ChaseModUtils.cs
@@ -48,6 +48,9 @@ public static void ChatPrefixed(CCSPlayerController player, string message)
48
}
49
public static void ChatAllPrefixed(string message)
50
{
51
- Server.PrintToChatAll($" {ChatColors.Magenta}HNS {ChatColors.Grey}| {message}");
+ foreach (var controller in Utilities.GetPlayers())
52
+ {
53
+ ChatPrefixed(controller, message);
54
+ }
55
56
0 commit comments