diff --git a/ModularTegustation/tegu_items/refinery/alt_refinery/_refiner.dm b/ModularTegustation/tegu_items/refinery/alt_refinery/_refiner.dm index 881ee8b1ca2b..85ed73abf705 100644 --- a/ModularTegustation/tegu_items/refinery/alt_refinery/_refiner.dm +++ b/ModularTegustation/tegu_items/refinery/alt_refinery/_refiner.dm @@ -47,8 +47,8 @@ /obj/structure/altrefiner/attackby(obj/item/I, mob/living/user, params) . = ..() if(!requires_item) - to_chat(user, span_warning("This machine does not accept objects!")) - playsound(get_turf(src), 'sound/machines/terminal_prompt_deny.ogg', 50, TRUE) + to_chat(user, span_notice("This machine does not accept objects, so instead you touched it")) + attack_hand(user) return FALSE if(officer_only && user?.mind?.assigned_role != "Extraction Officer")