Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions code/modules/food_and_drinks/kitchen_machinery/deep_fryer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ANYWAY")
if(safety != "FRY ANYWAY")
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?!
Expand Down