From 06a7040370a72e590d7da9983d5d8bb4aecab8aa Mon Sep 17 00:00:00 2001 From: fernerr <35879136+fernerr@users.noreply.github.com> Date: Tue, 17 Nov 2020 10:20:22 +0100 Subject: [PATCH] Lowers the max # of players of burglar from 20 to 15 (#10546) --- code/game/gamemodes/burglars/burglars.dm | 2 +- html/changelogs/Ferner-201114-coding_burglarlimit.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/Ferner-201114-coding_burglarlimit.yml diff --git a/code/game/gamemodes/burglars/burglars.dm b/code/game/gamemodes/burglars/burglars.dm index 33ea7cc2adb..7b4fbe8a8d5 100644 --- a/code/game/gamemodes/burglars/burglars.dm +++ b/code/game/gamemodes/burglars/burglars.dm @@ -3,7 +3,7 @@ /datum/game_mode/burglars name = "burglars" config_tag = "burglars" - max_players = 20 + max_players = 15 required_enemies = 2 round_description = "Something tiny is on the horizon! Is it the distance, or...?" extended_round_description = "Two of the Orion Spur's best and brightest (or so they were told) have been tasked with burglarizing a station that will change the way capitalism grips this galaxy forever (or so they were told). It is up to the crew to repel them, and up to them to survive and possibly thrive." diff --git a/html/changelogs/Ferner-201114-coding_burglarlimit.yml b/html/changelogs/Ferner-201114-coding_burglarlimit.yml new file mode 100644 index 00000000000..f9259f1bf9d --- /dev/null +++ b/html/changelogs/Ferner-201114-coding_burglarlimit.yml @@ -0,0 +1,4 @@ +author: Ferner +delete-after: True +changes: + - tweak: "Lowered the max number of players for the burglar gamemode from 20 to 15." \ No newline at end of file