diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index 28988314be..b480e98df4 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -22,7 +22,9 @@ public abstract partial class SharedToolSystem : EntitySystem private void OnDoAfter(EntityUid uid, ToolComponent tool, ToolDoAfterEvent args) { - PlayToolSound(uid, tool, args.User); + if (!args.Cancelled) + PlayToolSound(uid, tool, args.User); + var ev = args.WrappedEvent; ev.DoAfter = args.DoAfter;