refactor: Remove unused grill machine (#27122)

This commit is contained in:
warriorstar-orion
2024-10-17 07:16:41 -04:00
committed by GitHub
parent 204f7985c4
commit 20dfb3af69
2 changed files with 0 additions and 30 deletions
@@ -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