From 55ff8fbed3a7216f8f1c2c23ec7cf510f2b62264 Mon Sep 17 00:00:00 2001 From: Kyle Spier-Swenson Date: Sat, 16 Dec 2023 11:00:49 -0800 Subject: [PATCH] disables tutorials There is no config for this and the prod server will be connected to a fresh db so it will see all players as new. --- code/modules/tutorials/_tutorial.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/tutorials/_tutorial.dm b/code/modules/tutorials/_tutorial.dm index 3baa9ad148b..3ba8137aa2f 100644 --- a/code/modules/tutorials/_tutorial.dm +++ b/code/modules/tutorials/_tutorial.dm @@ -183,6 +183,7 @@ /// Checks if the user should be given this tutorial /datum/tutorial_manager/proc/should_run(mob/user) + return FALSE var/ckey = user.ckey if (isnull(ckey))