From 8e724db29952b49e7086387c7bfc97ee0270877e Mon Sep 17 00:00:00 2001 From: mochi Date: Tue, 1 Sep 2020 12:44:40 +0200 Subject: [PATCH] Fix unusable "sign up" chat btn when ghost polling --- code/_onclick/hud/alert.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm index 7b53bce22de..a07a29ccc53 100644 --- a/code/_onclick/hud/alert.dm +++ b/code/_onclick/hud/alert.dm @@ -570,10 +570,7 @@ so as to remain in compliance with the most up-to-date laws." G.ManualFollow(target) /obj/screen/alert/notify_action/Topic(href, href_list) - if(..()) - return TRUE - - if(href_list["signup"] && isobserver(usr) && poll?.sign_up(usr)) + if(href_list["signup"] && poll?.sign_up(usr)) display_signed_up() /obj/screen/alert/notify_action/proc/display_signed_up()