From 63bea9d1fc9ba468ce0c44022fb367617b907f7f Mon Sep 17 00:00:00 2001 From: LetterJay Date: Thu, 25 Jan 2018 00:17:33 -0600 Subject: [PATCH] Revert "[MIRROR] Forces test run to run with a set random seed" --- code/controllers/master.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/master.dm b/code/controllers/master.dm index c34431052f..57c2323c42 100644 --- a/code/controllers/master.dm +++ b/code/controllers/master.dm @@ -65,7 +65,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new // Highlander-style: there can only be one! Kill off the old and replace it with the new. if(!random_seed) - random_seed = (TEST_RUN_PARAMETER in world.params) ? 29051994 : rand(1, 1e9) + random_seed = rand(1, 1e9) rand_seed(random_seed) var/list/_subsystems = list()