From 74a53f87820af1ebc30a2f1493c82e8b82fe4c57 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Tue, 21 Jul 2020 22:18:24 -0700 Subject: [PATCH] Enable links in OOC Because this is new and was defaulted off, apparently --- code/controllers/configuration.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index a8c8a0a551..0c230fa69d 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -237,9 +237,9 @@ var/list/gamemode_cache = list() var/static/dooc_allowed = 1 var/static/dsay_allowed = 1 - var/allow_byond_links = 0 - var/allow_discord_links = 0 - var/allow_url_links = 0 // honestly if I were you i'd leave this one off, only use in dire situations + var/allow_byond_links = 1 //CHOMP Edit turned this on + var/allow_discord_links = 1 //CHOMP Edit turned this on + var/allow_url_links = 1 // honestly if I were you i'd leave this one off, only use in dire situations //CHOMP Edit bussy. var/starlight = 0 // Whether space turfs have ambient light or not @@ -1112,4 +1112,4 @@ var/list/gamemode_cache = list() if(world.system_type == UNIX) config.python_path = "/usr/bin/env python2" else //probably windows, if not this should work anyway - config.python_path = "python" \ No newline at end of file + config.python_path = "python"