From ac665354a79084b18bc16ac5ddb414bfb64ee277 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 28 Dec 2017 10:03:39 -0500 Subject: [PATCH] Fixes ghost light not moving while orbiting (#33878) --- code/modules/orbit/orbit.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/orbit/orbit.dm b/code/modules/orbit/orbit.dm index 0293886fd42..e93e5c04c6c 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -55,6 +55,7 @@ return orbiter.loc = targetloc orbiter.update_parallax_contents() + orbiter.update_light() lastloc = orbiter.loc for(var/other_orbit in orbiter.orbiters) var/datum/orbit/OO = other_orbit @@ -123,4 +124,4 @@ var/datum/orbit/O = thing if(O.orbiter && isobserver(O.orbiter)) var/mob/dead/observer/D = O.orbiter - D.ManualFollow(target) \ No newline at end of file + D.ManualFollow(target)