Fixes cryo announcements

This commit is contained in:
Archie
2021-01-10 12:28:10 -03:00
parent 80d37a88ae
commit 99fa403e5d
+4 -3
View File
@@ -18,9 +18,10 @@ GLOBAL_LIST_EMPTY(announcement_systems)
var/obj/item/radio/headset/radio
var/arrival = "%PERSON has signed up as %DISP_RANK (%RANK)"
var/arrivalToggle = 1
var/arrivalToggle = TRUE
var/newhead = "%PERSON, %DISP_RANK (%RANK), is the department head."
var/newheadToggle = 1
var/newheadToggle = TRUE
var/cryostorage = "%PERSON, %RANK, has been moved into cryogenic storage." // this shouldnt be changed
var/greenlight = "Light_Green"
var/pinklight = "Light_Pink"
@@ -91,7 +92,7 @@ GLOBAL_LIST_EMPTY(announcement_systems)
message = CompileText(newhead, user, rank, displayed_rank)
//CITADEL EDIT for cryopods
else if(message_type == "CRYOSTORAGE")
message = CompileText("%PERSON, %DISP_RANK (%RANK) has been moved to cryo storage.", user, rank, displayed_rank)
message = CompileText(cryostorage, user, rank, displayed_rank)
//END EDIT
else if(message_type == "ARRIVALS_BROKEN")
message = "The arrivals shuttle has been damaged. Docking for repairs..."