diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index d350ad1b90b..2071b69b1f3 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -10335,7 +10335,7 @@ /turf/open/floor/engine, /area/engine/supermatter) "axx" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/structure/window/plasma/reinforced{ dir = 4 }, @@ -10361,7 +10361,7 @@ /turf/open/floor/engine, /area/engine/supermatter) "axB" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/structure/window/plasma/reinforced{ dir = 8 }, @@ -11591,7 +11591,7 @@ /turf/open/floor/plating, /area/engine/supermatter) "azT" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/structure/window/plasma/reinforced{ dir = 4 }, @@ -11602,7 +11602,7 @@ /turf/open/floor/circuit/green, /area/engine/supermatter) "azU" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/structure/window/plasma/reinforced{ dir = 8 }, @@ -12754,12 +12754,14 @@ }, /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aCp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aCr" = ( @@ -59566,7 +59568,7 @@ /turf/open/floor/plating, /area/engine/engineering) "cje" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -68148,7 +68150,7 @@ /turf/open/space, /area/space/nearstation) "cAK" = ( -/obj/machinery/power/rad_collector/anchored/delta, +/obj/machinery/power/rad_collector/anchored, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index e1982e7cde3..fc3b0a24511 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -11,7 +11,7 @@ icon_state = "ca" anchored = FALSE density = TRUE - req_access = list(ACCESS_ENGINE_EQUIP) + req_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS) max_integrity = 350 integrity_failure = 0.2 circuit = /obj/item/circuitboard/machine/rad_collector @@ -27,10 +27,6 @@ . = ..() set_anchored(TRUE) -/obj/machinery/power/rad_collector/anchored/delta //Deltastation's engine is shared by engineers and atmos techs - desc = "A device which uses Hawking Radiation and plasma to produce power. This model allows access by Atmospheric Technicians." - req_access = list(ACCESS_ENGINE_EQUIP, ACCESS_ATMOSPHERICS) - /obj/machinery/power/rad_collector/Destroy() return ..()