Update CountdownCommandBehavior.cs

This commit is contained in:
Kaleb Schmenk
2025-05-11 20:15:57 -04:00
parent 4413de9933
commit 4482291c44

View File

@@ -99,6 +99,11 @@ public class CountdownCommandBehavior(IWardenService warden, IMuteService mute,
private void PrintCountdownToPlayers(int seconds) {
new SimpleView { PREFIX, "Countdown: " + seconds }.ToAllChat();
var players = Utilities.GetPlayers();
foreach (var player in players) {
player.ExecuteClientCommand("play \\sounds\\weapons\\clipempty_pistol.vsnd_c");
}
}
private void PrintGoToPlayers() {