Update player sound effects and StatusBlocker plugin

Changed sound effects for player suicide and slap commands in playercommands.cs. Replaced StatusBlocker v1.0.7 plugin files with v1.0.9 for both Linux and Windows in the StealthModule.
This commit is contained in:
Dawid Bepierszcz
2025-10-19 16:53:17 +02:00
parent 099e91b43b
commit 718536eaef
5 changed files with 2 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ public partial class CS2_SimpleAdmin
// Make the player commit suicide
player.CommitSuicide(false, true);
player.EmitSound("Player.Death");
// Determine message keys and arguments for the slay notification
var (activityMessageKey, adminActivityArgs) =
@@ -120,7 +121,7 @@ public partial class CS2_SimpleAdmin
// Apply slap damage to the player
player.Pawn.Value?.Slap(damage);
player.EmitSound("BaseGrenade.JumpThrowM");
player.EmitSound("Player.DamageFall");
// Log the command
if (command == null)