From 02afe36f5879a5d0af0b0e883463f42c551fc150 Mon Sep 17 00:00:00 2001 From: FlitchTime Date: Wed, 11 Dec 2024 14:31:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BD=D1=91=D1=81=20=D0=BB=D0=B8=D1=88?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D1=8B=20=D0=B8=20=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D1=88=D0=B8=D0=B5?= =?UTF-8?q?=D1=81=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../food_and_drinks/kitchen_machinery/kitchen_machine.dm | 8 ++++---- .../reagents/chemistry/machinery/reagentgrinder.dm | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm index 3503b323722..9d5549f8b22 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/kitchen_machine.dm @@ -159,7 +159,7 @@ return add_fingerprint(user) - cook(user) + cook() /obj/machinery/kitchen_machine/CtrlShiftClick(mob/user) var/mob/living/carbon/human/human = user @@ -349,7 +349,7 @@ * Machine Menu Handling/Cooking * ************************************/ -/obj/machinery/kitchen_machine/proc/cook(mob/user) +/obj/machinery/kitchen_machine/proc/cook() if(stat & (NOPOWER|BROKEN)) return start() @@ -491,7 +491,7 @@ if(reagents.total_volume) dirty++ reagents.clear_reagents() - to_chat(usr, "You dispose of \the [src]'s contents.") + to_chat(user, "You dispose of \the [src]'s contents.") updateUsrDialog() /obj/machinery/kitchen_machine/proc/muck_start() @@ -549,7 +549,7 @@ switch(href_list["action"]) if("cook") - cook(usr) + cook() if("dispose") dispose(usr) diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index 0a13dd1f4bc..754007d7543 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -243,7 +243,7 @@ return add_fingerprint(user) - grind(user) + grind() /obj/machinery/reagentgrinder/CtrlShiftClick(mob/user) var/mob/living/carbon/human/human = user @@ -257,7 +257,7 @@ return add_fingerprint(user) - detach(user) + detach() /obj/machinery/reagentgrinder/attack_ai(mob/user) return FALSE @@ -324,13 +324,13 @@ return switch(href_list["action"]) if ("grind") - grind(usr) + grind() if("juice") juice() if("eject") eject() if ("detach") - detach(usr) + detach() /obj/machinery/reagentgrinder/proc/detach()