From 12a44bf4e0804f6725276ce6c8ac6e2c17cc1494 Mon Sep 17 00:00:00 2001 From: Justin Trotter Date: Fri, 23 Jun 2023 07:23:08 -0500 Subject: [PATCH] uranium spears make damage sounds (#17575) --- Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index ecfc85daca..e85be90dc3 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -873,6 +873,7 @@ public abstract class SharedMeleeWeaponSystem : EntitySystem // Unfortunately heat returns caustic group so can't just use the damagegroup in that instance. case "Burn": case "Heat": + case "Radiation": case "Cold": Audio.PlayPredicted(new SoundPathSpecifier("/Audio/Items/welder.ogg"), target, user, AudioParams.Default.WithVariation(DamagePitchVariation)); break;