Skip to content
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.

Commit

Permalink
Add config option to disable LOOC by default
Browse files Browse the repository at this point in the history
  • Loading branch information
babydoll authored and comma committed Jul 3, 2018
1 parent dcb3e0b commit a7d5fb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -2623,8 +2623,8 @@
#include "maps\random_ruins\exoplanet_ruins\exoplanet_ruins.dm"
#include "maps\random_ruins\exoplanet_ruins\fountain\fountain_ruin.dm"
#include "maps\random_ruins\exoplanet_ruins\hydrobase\hydrobase.dm"
#include "maps\random_ruins\exoplanet_ruins\marooned\marooned.dm"
#include "maps\random_ruins\exoplanet_ruins\lodge\lodge.dm"
#include "maps\random_ruins\exoplanet_ruins\marooned\marooned.dm"
#include "maps\random_ruins\exoplanet_ruins\monoliths\monoliths.dm"
#include "maps\random_ruins\exoplanet_ruins\oasis\oasis.dm"
#include "maps\random_ruins\space_ruins\space_ruins.dm"
Expand Down
2 changes: 2 additions & 0 deletions code/controllers/configuration.dm
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@ var/list/gamemode_cache = list()

if ("disable_ooc")
config.ooc_allowed = 0

if ("disable_looc")
config.looc_allowed = 0

if ("disable_aooc")
Expand Down
3 changes: 3 additions & 0 deletions config/example/config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ EVENT_CUSTOM_START_MAJOR 80;100
## Uncomment to disable the OOC channel by default.
#DISABLE_OOC

## Uncomment to disable the LOOC channel by default.
#DISABLE_LOOC

## Uncomment to disable the dead OOC channel by default.
#DISABLE_DEAD_OOC

Expand Down

0 comments on commit a7d5fb6

Please sign in to comment.