mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-16 01:23:41 +01:00
refactor: Remove unused grill machine (#27122)
This commit is contained in:
committed by
GitHub
parent
204f7985c4
commit
20dfb3af69
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user