From 77f9295df2e7a7b0b32d921f6c1d88afcbbf990c 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 89d1d89e58..02a80675aa 100644 --- a/code/modules/orbit/orbit.dm +++ b/code/modules/orbit/orbit.dm @@ -51,6 +51,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 @@ -119,4 +120,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)