From 9ccae23dffb2c69c0abea9dfe8465634f7ae2473 Mon Sep 17 00:00:00 2001 From: Mako Date: Mon, 13 Jun 2022 23:29:48 -0700 Subject: [PATCH 1/4] Adds a warning --- code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index 331ec7de7c35..e0c75589d8a1 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -113,6 +113,11 @@ God bless America. var/turf/T = get_turf(src) new /obj/item/syndicate_basket(T) return + if(istype(I, /obj/item/organ/brain)) + var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No", "FRY THIS BITCH") + if(safety != "FRY THIS BITCH") + to_chat(user, span_warning("You decided not to fry this brain...")) + return if(default_unfasten_wrench(user, I)) return else if(default_deconstruction_screwdriver(user, "fryer_off", "fryer_off" ,I)) //where's the open maint panel icon?! From 2d7ad556d86d8b332748ebf0ea4b192f3e54e8a0 Mon Sep 17 00:00:00 2001 From: Mako Date: Mon, 13 Jun 2022 23:34:14 -0700 Subject: [PATCH 2/4] punctuations exist apparently --- code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index e0c75589d8a1..a98da95fae54 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -114,7 +114,7 @@ God bless America. new /obj/item/syndicate_basket(T) return if(istype(I, /obj/item/organ/brain)) - var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No", "FRY THIS BITCH") + var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No.", "FRY THIS BITCH ! ! !") if(safety != "FRY THIS BITCH") to_chat(user, span_warning("You decided not to fry this brain...")) return From c50c5f428310aab19c50062f902056b18dd0a0d6 Mon Sep 17 00:00:00 2001 From: Jamie D <993128+JamieD1@users.noreply.github.com> Date: Tue, 14 Jun 2022 18:42:18 +0100 Subject: [PATCH 3/4] Update code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm --- code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index a98da95fae54..32a9816ff31c 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -115,7 +115,7 @@ God bless America. return if(istype(I, /obj/item/organ/brain)) var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No.", "FRY THIS BITCH ! ! !") - if(safety != "FRY THIS BITCH") + if(safety != "FRY ANYWAY") to_chat(user, span_warning("You decided not to fry this brain...")) return if(default_unfasten_wrench(user, I)) From 985d647fffe2e8526d09e572606adafc351dee13 Mon Sep 17 00:00:00 2001 From: Jamie D <993128+JamieD1@users.noreply.github.com> Date: Tue, 14 Jun 2022 18:42:44 +0100 Subject: [PATCH 4/4] Update code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm --- code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm index 32a9816ff31c..aec53977e89d 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm @@ -114,7 +114,7 @@ God bless America. new /obj/item/syndicate_basket(T) return if(istype(I, /obj/item/organ/brain)) - var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No.", "FRY THIS BITCH ! ! !") + var/safety = alert(user, "Warning! This brain might still contain a life in it.", "Proceed anyways?" ,"No.", "FRY ANYWAY") if(safety != "FRY ANYWAY") to_chat(user, span_warning("You decided not to fry this brain...")) return