From 1204251d77fb55f3f5b25fc1fe56b4ce557a0fbf Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 10 Sep 2017 00:12:52 +0200 Subject: [PATCH] Fixes admin topics (#30554) * Fixes admin topics * Actually right --- code/modules/admin/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index cdfd0b0c75a..a7ac73eed4e 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1,6 +1,6 @@ /datum/admins/proc/CheckAdminHref(href, href_list) var/auth = href_list["admin_token"] - . = auth && auth != href_token && auth != GLOB.href_token + . = auth && (auth == href_token || auth == GLOB.href_token) if(.) return var/msg = !auth ? "no" : "a bad"