mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 15:08:02 +01:00
Updates Rocky Motel (#28786)
* this motel rocks * nvm i got chat gpt * relocate icon * oh it removed web commit
This commit is contained in:
@@ -131,3 +131,10 @@
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/capacitor = 1,
|
||||
)
|
||||
|
||||
/obj/machinery/cooking/deepfryer/loaded/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i in 1 to length(surfaces))
|
||||
var/datum/cooking_surface/surface = surfaces[i]
|
||||
surface.container = new /obj/item/reagent_containers/cooking/deep_basket(src)
|
||||
update_appearance()
|
||||
|
||||
@@ -200,3 +200,11 @@
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/matter_bin = 2,
|
||||
)
|
||||
|
||||
/obj/machinery/cooking/grill/loaded/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i in 1 to length(surfaces))
|
||||
var/datum/cooking_surface/surface = surfaces[i]
|
||||
surface.container = new /obj/item/reagent_containers/cooking/grill_grate(src)
|
||||
stored_wood = 30
|
||||
update_appearance()
|
||||
|
||||
@@ -164,3 +164,10 @@
|
||||
/obj/item/stock_parts/capacitor = 1,
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
)
|
||||
|
||||
/obj/machinery/cooking/oven/loaded/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i in 1 to length(surfaces))
|
||||
var/datum/cooking_surface/surface = surfaces[i]
|
||||
surface.container = new /obj/item/reagent_containers/cooking/oven(src)
|
||||
update_appearance()
|
||||
|
||||
@@ -131,3 +131,13 @@
|
||||
/obj/item/stock_parts/micro_laser = 2,
|
||||
/obj/item/stock_parts/capacitor = 1,
|
||||
)
|
||||
|
||||
/obj/machinery/cooking/stovetop/loaded/Initialize(mapload)
|
||||
. = ..()
|
||||
for(var/i in 1 to length(surfaces))
|
||||
var/datum/cooking_surface/surface = surfaces[i]
|
||||
if(i % 2 == 0)
|
||||
surface.container = new /obj/item/reagent_containers/cooking/pot(src)
|
||||
else
|
||||
surface.container = new /obj/item/reagent_containers/cooking/pan(src)
|
||||
update_appearance()
|
||||
|
||||
Reference in New Issue
Block a user