Allows you to toggle off Byond/Discord/URLs in OOC

This commit is contained in:
Atermonera
2020-05-21 11:19:04 -07:00
committed by VirgoBot
parent 3237ae96d7
commit 0c200c9483
3 changed files with 52 additions and 3 deletions

View File

@@ -232,7 +232,15 @@ var/list/gamemode_cache = list()
var/static/dooc_allowed = 1
var/static/dsay_allowed = 1
<<<<<<< HEAD
var/static/starlight = 0 // Whether space turfs have ambient light or not
=======
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/starlight = 0 // Whether space turfs have ambient light or not
>>>>>>> 3fbc72a... Merge pull request #7206 from GeneriedJenelle/patch-1
var/static/list/ert_species = list(SPECIES_HUMAN)
@@ -423,6 +431,15 @@ var/list/gamemode_cache = list()
if ("allow_admin_spawning")
config.allow_admin_spawning = 1
if ("allow_byond_links")
allow_byond_links = 1
if ("allow_discord_links")
allow_discord_links = 1
if ("allow_url_links")
allow_url_links = 1
if ("no_dead_vote")
config.vote_no_dead = 1