From 694f831e145aa5cbff859539feb680c70283df7a Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Mon, 26 Jan 2026 20:07:39 +0100 Subject: [PATCH] adds medbay camera preset (#5177) ## About The Pull Request Adds medbay camera preset for mapping. I've noticed some maps use the medbay network, and yet it has no presets, so I decided to make one. I haven't tested it, because it seems simple enough change to not require it, but I can do some testing if requested ## Why It's Good For The Game Will make life of mappers easier ## Changelog :cl: Swan add: added medbay autoname camera preset for mappers /:cl: --- modular_zubbers/code/game/machinery/camera/camera.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modular_zubbers/code/game/machinery/camera/camera.dm b/modular_zubbers/code/game/machinery/camera/camera.dm index af3b8bf870a..7c3c516660a 100644 --- a/modular_zubbers/code/game/machinery/camera/camera.dm +++ b/modular_zubbers/code/game/machinery/camera/camera.dm @@ -122,5 +122,9 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/autoname/turbine, 0) MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/autoname/rbmk, 0) +// Medbay cameras +/obj/machinery/camera/autoname/medbay + network = list("ss13","medbay") +MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/camera/autoname/medbay, 0)