mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-04 14:33:30 +00:00
Allows you to toggle off Byond/Discord/URLs in OOC
Just toggleable OOC options that you can enable or disable at any time. Might be useful if you guys get hit.
This commit is contained in:
@@ -232,6 +232,10 @@ var/list/gamemode_cache = list()
|
||||
var/dooc_allowed = 1
|
||||
var/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/starlight = 0 // Whether space turfs have ambient light or not
|
||||
|
||||
var/list/ert_species = list(SPECIES_HUMAN)
|
||||
@@ -423,6 +427,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