From 9af9db4800ea09d74f57f56c4eea2ec411380d89 Mon Sep 17 00:00:00 2001 From: coiax Date: Tue, 14 Jun 2016 17:44:17 +0100 Subject: [PATCH] Fixes countdown moving in space wind (#18542) The countdown was being blown about by atmos stuff, and then moved back each tick. It was amusing to look at, but ultimately, is a bug that needs fixing. --- code/modules/countdown/countdown.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/countdown/countdown.dm b/code/modules/countdown/countdown.dm index 0859060e13a..4a78b7e173a 100644 --- a/code/modules/countdown/countdown.dm +++ b/code/modules/countdown/countdown.dm @@ -11,6 +11,7 @@ var/text_size = 4 var/started = FALSE invisibility = INVISIBILITY_OBSERVER + anchored = TRUE layer = GHOST_LAYER /obj/effect/countdown/New(atom/A)