mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-28 15:39:57 +01:00
Adding the dispensers to the cargo lists.
Making a sub-type of the dispensers so that they spawn disconnected from the ground.
This commit is contained in:
@@ -980,6 +980,24 @@ var/list/all_supply_groups = list("Operations","Security","Hospitality","Enginee
|
||||
group = "Engineering"
|
||||
access = access_engine
|
||||
|
||||
/datum/supply_packs/air_dispenser
|
||||
contains = list(/obj/machinery/pipedispenser/orderable)
|
||||
name = "Pipe Dispenser"
|
||||
cost = 35
|
||||
containertype = /obj/structure/closet/crate/secure/large
|
||||
containername = "Pipe Dispenser Crate"
|
||||
group = "Engineering"
|
||||
access = access_atmospherics
|
||||
|
||||
/datum/supply_packs/disposals_dispenser
|
||||
contains = list(/obj/machinery/pipedispenser/disposal/orderable)
|
||||
name = "Disposals Pipe Dispenser"
|
||||
cost = 35
|
||||
containertype = /obj/structure/closet/crate/secure/large
|
||||
containername = "Disposal Dispenser Crate"
|
||||
group = "Engineering"
|
||||
access = access_atmospherics
|
||||
|
||||
/datum/supply_packs/bee_keeper
|
||||
name = "Beekeeping Crate"
|
||||
contains = list(/obj/item/beezeez,
|
||||
|
||||
@@ -110,7 +110,6 @@
|
||||
else
|
||||
return ..()
|
||||
|
||||
|
||||
/obj/machinery/pipedispenser/disposal
|
||||
name = "Disposal Pipe Dispenser"
|
||||
icon = 'icons/obj/stationobjs.dmi'
|
||||
@@ -200,3 +199,11 @@ Nah
|
||||
wait = 0
|
||||
return
|
||||
|
||||
// adding a pipe dispensers that spawn unhooked from the ground
|
||||
/obj/machinery/pipedispenser/orderable
|
||||
anchored = 0
|
||||
unwrenched = 1
|
||||
|
||||
/obj/machinery/pipedispenser/disposal/orderable
|
||||
anchored = 0
|
||||
unwrenched = 1
|
||||
Reference in New Issue
Block a user