mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 04:51:32 +01:00
Epic MRE Time (Let's get this on a tray) (#14387)
This commit is contained in:
@@ -326,11 +326,11 @@
|
||||
|
||||
/obj/structure/closet/crate/freezer/rations //For use in the escape shuttle
|
||||
name = "emergency rations"
|
||||
desc = "A crate of emergency rations containing liquid food and some bottles of water."
|
||||
desc = "A crate of emergency rations and some bottles of water."
|
||||
|
||||
/obj/structure/closet/crate/freezer/rations/fill()
|
||||
for(var/i=1,i<=6,i++)
|
||||
new /obj/item/reagent_containers/food/snacks/liquidfood(src)
|
||||
new /obj/random/mre
|
||||
new /obj/item/reagent_containers/food/drinks/waterbottle(src)
|
||||
|
||||
/obj/structure/closet/crate/bin
|
||||
@@ -542,7 +542,7 @@
|
||||
var/list/crates_to_use = typesof(/obj/structure/closet/crate) - typesof(/obj/structure/closet/crate/secure/gear_loadout)
|
||||
crates_to_use -= /obj/structure/closet/crate/loot
|
||||
var/icontype = pick(crates_to_use)
|
||||
var/obj/structure/closet/crate/C = new icontype(get_turf(src), TRUE) //TRUE as we do not want the crate to fill(), we will fill it ourselves.
|
||||
var/obj/structure/closet/crate/C = new icontype(get_turf(src), TRUE) //TRUE as we do not want the crate to fill(), we will fill it ourselves.
|
||||
|
||||
C.name = "unusual container"
|
||||
C.desc = "A mysterious container of unknown origins. What mysteries lie within?"
|
||||
|
||||
Reference in New Issue
Block a user