From bef1b0b3bcdbbfea96b5760888145848dcc4bebe Mon Sep 17 00:00:00 2001 From: Kyep Date: Tue, 15 Sep 2020 15:44:46 -0700 Subject: [PATCH] urlencode --- code/game/world.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/world.dm b/code/game/world.dm index ef5b2bc9136..8923b84a3f1 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -223,7 +223,7 @@ GLOBAL_VAR_INIT(world_topic_spam_protect_time, world.timeofday) return "Bad Key" else var/prtext = input["announce"] - if(copytext(prtext, 1, 23) == "Pull request merged by") + if(copytext(prtext, 1, 23) == "Pull+Request+merged+by") // its urlencoded GLOB.pending_server_update = TRUE for(var/client/C in GLOB.clients) to_chat(C, "PR: [prtext]")