From f0af57d7d66aa2c72c020b4b59afbf4f432d2c6c Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 7 Jan 2020 20:22:06 -0500 Subject: [PATCH] wrong question mark place aaa --- code/datums/world_topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/world_topic.dm b/code/datums/world_topic.dm index 74b5222950..602ef7f5f5 100644 --- a/code/datums/world_topic.dm +++ b/code/datums/world_topic.dm @@ -103,7 +103,7 @@ /datum/world_topic/server_hop/Run(list/input, addr) var/expected_key = input[keyword] for(var/mob/dead/observer/O in GLOB.player_list) - if(O.key == expected_key && O?.client.address == addr) + if(O.key == expected_key && O.client?.address == addr) if(O.client) new /obj/screen/splash(O.client, TRUE) break