update sounds

This commit is contained in:
ShookEagle
2025-07-27 10:36:37 -05:00
parent d7f1149317
commit 19f240d918

View File

@@ -94,7 +94,8 @@ public class GhostDay(BasePlugin plugin, IServiceProvider provider)
Server.ExecuteCommand($"mp_footsteps_serverside {(state ? "1" : "0")}");
if (state) EnableDamage(); else DisableDamage();
foreach (var player in PlayerUtil.GetAlive()) {
player.ExecuteClientCommand("play \"sounds/ui/counter_beep.vsnd\"");
player.ExecuteClientCommand(
$"play {(state ? "\"sounds/buttons/bell1.vsnd\"" : "\"sounds/ui/counter_beep.vsnd\"")}");
}
}