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()