diff --git a/code/modules/food_and_drinks/kitchen_machinery/food_grill.dm b/code/modules/food_and_drinks/kitchen_machinery/food_grill.dm deleted file mode 100644 index 2686931c625..00000000000 --- a/code/modules/food_and_drinks/kitchen_machinery/food_grill.dm +++ /dev/null @@ -1,29 +0,0 @@ -/obj/machinery/cooker/foodgrill - name = "grill" - desc = "Backyard grilling, IN SPACE." - icon = 'icons/obj/cooking_machines.dmi' - icon_state = "grill_off" - thiscooktype = "grilled" - burns = TRUE - firechance = 20 - cooktime = 50 - foodcolor = "#A34719" - onicon = "grill_on" - officon = "grill_off" - -/obj/machinery/cooker/foodgrill/putIn(obj/item/In, mob/chef) - ..() - var/image/img = new(In.icon, In.icon_state) - img.pixel_y = 5 - overlays += img - sleep(50) - overlays = 0 - img.color = "#C28566" - overlays += img - sleep(50) - overlays = 0 - img.color = "#A34719" - overlays += img - sleep(50) - overlays = 0 - diff --git a/paradise.dme b/paradise.dme index 2e569021c1d..bbcd4fda1ea 100644 --- a/paradise.dme +++ b/paradise.dme @@ -1924,7 +1924,6 @@ #include "code\modules\food_and_drinks\kitchen_machinery\cereal_maker.dm" #include "code\modules\food_and_drinks\kitchen_machinery\cooker.dm" #include "code\modules\food_and_drinks\kitchen_machinery\deep_fryer.dm" -#include "code\modules\food_and_drinks\kitchen_machinery\food_grill.dm" #include "code\modules\food_and_drinks\kitchen_machinery\gibber.dm" #include "code\modules\food_and_drinks\kitchen_machinery\grill_new.dm" #include "code\modules\food_and_drinks\kitchen_machinery\icecream_vat.dm"