From bc74ea53c95ffc20fc1b89b32f1daf73f51b921b Mon Sep 17 00:00:00 2001 From: Heroman Date: Mon, 15 Apr 2019 18:14:04 +1000 Subject: [PATCH] Removes Command from appearing for players who had it removed --- code/controllers/subsystems/persist_vr.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystems/persist_vr.dm b/code/controllers/subsystems/persist_vr.dm index 6baceae332..88bbabe72d 100644 --- a/code/controllers/subsystems/persist_vr.dm +++ b/code/controllers/subsystems/persist_vr.dm @@ -91,4 +91,5 @@ SUBSYSTEM_DEF(persist) var/client/C = M.client LAZYINITLIST(C.department_hours) if(C.department_hours["Command"]) - C.department_hours["Command"] = null \ No newline at end of file + C.department_hours["Command"] = null + C.department_hours.Remove("Command") \ No newline at end of file