From 1d4db9461c39bb3a4c1a14d3e9198557f0d4d96b Mon Sep 17 00:00:00 2001 From: moxian Date: Wed, 27 Apr 2022 21:49:43 +0000 Subject: [PATCH] Fix runtime on an SQL-less install (#17682) --- code/modules/client/client_procs.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 2b9aeda497f..e62fb07c9c8 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -392,7 +392,8 @@ to_chat(src,"You do not have 2FA enabled. Admin verbs will be unavailable until you have enabled 2FA.") // Very fucking obvious // This happens asyncronously - karmaholder.processRefunds(mob) + if(karmaholder) + karmaholder.processRefunds(mob) /client/proc/is_connecting_from_localhost()