From 70f90f825213ac4a4081a02dca45c3d339b10fdd Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 13 Feb 2018 21:56:57 -0500 Subject: [PATCH] Merge pull request #35612 from vuonojenmustaturska/vuonojenmustaturska-patch-1 Prevents docking ports from being thrown away by chasms --- code/datums/components/chasm.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm index ec4a15749b..87a71e466e 100644 --- a/code/datums/components/chasm.dm +++ b/code/datums/components/chasm.dm @@ -7,6 +7,7 @@ var/static/list/falling_atoms = list() // Atoms currently falling into chasms var/static/list/forbidden_types = typecacheof(list( /obj/singularity, + /obj/docking_port, /obj/structure/lattice, /obj/structure/stone_tile, /obj/item/projectile,