mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Allows you to toggle off Byond/Discord/URLs in OOC
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user