From 9de9ade667fa3fe30a0b8b58133b8461278c63d3 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Sat, 21 Jan 2017 21:04:32 -0500 Subject: [PATCH] Fixes Orbit's atom/Destroy overrides not returning (#23186) * HEAVY BREATHING!!!! * BREATHING INTENSIFIES!!!!!!!!!!!!!!! --- code/modules/orbit/orbit.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/orbit/orbit.dm b/code/modules/orbit/orbit.dm index 81b80e48b4c..c4552155472 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -99,7 +99,7 @@ qdel(orbiting) /atom/Destroy(force = FALSE) - ..() + . = ..() if (orbiters) for (var/thing in orbiters) var/datum/orbit/O = thing @@ -107,6 +107,6 @@ O.orbiter.stop_orbit() /atom/movable/Destroy(force = FALSE) - ..() + . = ..() if (orbiting) - stop_orbit() \ No newline at end of file + stop_orbit()