diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 401e22fa135..6a6afe4daa0 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -175,7 +175,7 @@ var/rename_cyborg = 0 var/ooc_during_round = 0 var/emojis = 0 - var/roll_credits_round_end = 0 + var/no_credits_round_end = FALSE //Used for modifying movement speed for mobs. //Unversal modifiers @@ -576,8 +576,8 @@ ooc_during_round = 1 if("emojis") emojis = 1 - if("roll_credits_round_end") - roll_credits_round_end = 1 + if("no_credits_round_end") + no_credits_round_end = TRUE if("run_delay") run_speed = text2num(value) if("walk_delay") diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index e1bed59590d..4815bf3cfdf 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -461,9 +461,9 @@ SUBSYSTEM_DEF(ticker) to_chat(world, "


The round has ended.") - var/rollcredits = config.roll_credits_round_end + var/nocredits = config.no_credits_round_end for(var/client/C in GLOB.clients) - if(!C.credits && rollcredits) + if(!C.credits && !nocredits) C.RollCredits() C.playtitlemusic(40) diff --git a/config/game_options.txt b/config/game_options.txt index d136436dae0..1a67684139d 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -28,8 +28,8 @@ OOC_DURING_ROUND EMOJIS ## CREDIT SEQUENCE ### -## Comment this out if you want to disable round-end credits -ROLL_CREDITS_ROUND_END +## Uncomment this if you want to disable round-end credits +#NO_CREDITS_ROUND_END ## MOB MOVEMENT ###