From 96b64009d0c21359739349f8b92d5048ca76ba40 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sat, 18 Apr 2020 03:44:49 +0200 Subject: [PATCH] Oh, nullspace. --- code/game/objects/items/cards_ids.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index 3d926e2f53..62e51aca8e 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -182,7 +182,7 @@ switch(bank_support) if(ID_FREE_BANK_ACCOUNT) var/turf/T = get_turf(src) - if(is_vr_level(T.z)) //economy is exploitable on VR in so many ways. + if(T && is_vr_level(T.z)) //economy is exploitable on VR in so many ways. bank_support = ID_NO_BANK_ACCOUNT if(ID_LOCKED_BANK_ACCOUNT) registered_account = new /datum/bank_account/remote/non_transferable(pick(GLOB.redacted_strings))