diff --git a/code/datums/configuration.dm b/code/datums/configuration.dm index b0317a1605e..22f1fee6aaa 100644 --- a/code/datums/configuration.dm +++ b/code/datums/configuration.dm @@ -49,6 +49,8 @@ var/alert_desc_red_downto = "The self-destruct mechanism has been deactivated, there is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised." var/alert_desc_delta = "The station's self-destruct mechanism has been engaged. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill." + var/useircbot = 0 + //game_options.txt configs var/health_threshold_crit = 0 @@ -241,7 +243,10 @@ if("alert_delta") config.alert_desc_delta = value - + + if("useircbot") + useircbot = 1 + else diary << "Unknown setting in configuration: '[name]'" diff --git a/config/config.txt b/config/config.txt index 98f3e940fd6..b8ec36a12b8 100644 --- a/config/config.txt +++ b/config/config.txt @@ -110,4 +110,7 @@ GUEST_JOBBAN 1 # FEATURE_OBJECT_SPELL_SYSTEM ##Toggle for having jobs load up from the .txt -# LOAD_JOBS_FROM_TXT \ No newline at end of file +# LOAD_JOBS_FROM_TXT + +##Remove the # mark if you are going to use the SVN irc bot to relay adminhelps +#USEIRCBOT \ No newline at end of file