From 2934effd36a538f72ac009317daf6cf3b80d8be1 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Wed, 22 Nov 2017 14:27:10 -0500 Subject: [PATCH] Update blackbox.dm --- code/controllers/subsystem/blackbox.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm index a1efcfc167..3a0f3cff24 100644 --- a/code/controllers/subsystem/blackbox.dm +++ b/code/controllers/subsystem/blackbox.dm @@ -9,7 +9,8 @@ SUBSYSTEM_DEF(blackbox) var/triggertime = 0 var/sealed = FALSE //time to stop tracking stats? var/list/research_levels = list() //list of highest tech levels attained that isn't lost lost by destruction of RD computers - var/list/versions = list() //associative list of any feedback variables that have had their format changed since creation and their current version, remember to update this + var/list/versions = list("time_dilation_current" = 2, + "science_techweb_unlock" = 2) //associative list of any feedback variables that have had their format changed since creation and their current version, remember to update this /datum/controller/subsystem/blackbox/Initialize()