From bb99208b7ea2281b23313cabc4d675134fb9dac6 Mon Sep 17 00:00:00 2001 From: Mark Suckerberg Date: Sun, 9 Jul 2023 12:43:07 -0500 Subject: [PATCH] Fixes Wiki Verb (#2149) ## About The Pull Request If you can't read the title, this fix doesn't affect you ## Why It's Good For The Game Wiki integration is a very good thing ## Changelog :cl: fix: The wiki verb now works again /:cl: --- interface/interface.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/interface.dm b/interface/interface.dm index c753146f7972..e92c1cac13f1 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -6,7 +6,7 @@ var/wikiurl = CONFIG_GET(string/wikiurl) if(wikiurl) if(query) - var/output = wikiurl + "/index.php?title=Special%3ASearch&profile=default&search=" + query + var/output = "[wikiurl]?title=Special%3ASearch&profile=default&search=[query]" src << link(output) else if (query != null) src << link(wikiurl)