diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index d765c02fc7..9d16f9c6c9 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -122,6 +122,10 @@ namespace Content.Server.Lathe /// private void OnInteractUsing(EntityUid uid, LatheComponent component, InteractUsingEvent args) { + if (args.Handled) + return; + args.Handled = true; + if (!TryComp(uid, out var storage) || !TryComp(args.Used, out var material) || component.LatheWhitelist?.IsValid(args.Used) == false)