From accc12103ca07c37789a91bab19d9626774a79cd Mon Sep 17 00:00:00 2001 From: ktccd Date: Sat, 15 Jul 2017 23:44:04 +0200 Subject: [PATCH 1/2] Enables Random borer event Enables the borer event, from max 0 occurances to max 1 occurance per round. Decreases random chance weight of borer event, from 15 down to the default 10. Increases minimum players required up from 15 to 20, as the gamemode at MINIMUM requires 10 living players to greentext anyway and does poorly on very lowpop rounds. Earliest start increased from 20 minutes to 40 minutes, as our rounds lasts longer than TG rounds do. --- code/game/gamemodes/miniantags/borer/borer_event.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/game/gamemodes/miniantags/borer/borer_event.dm b/code/game/gamemodes/miniantags/borer/borer_event.dm index 45470bc96c..201f7da200 100644 --- a/code/game/gamemodes/miniantags/borer/borer_event.dm +++ b/code/game/gamemodes/miniantags/borer/borer_event.dm @@ -1,10 +1,9 @@ /datum/round_event_control/borer name = "Borer" typepath = /datum/round_event/borer - weight = 15 - max_occurrences = 0 - min_players = 15 - earliest_start = 12000 + weight = 10 //Default weight + max_occurrences = 1 + earliest_start = 24000 //40 min, double default timer /datum/round_event/borer announceWhen = 2400 //Borers get 4 minutes till the crew tries to murder them. From f87046aaeeffa5657000fcf9c0ebd8c66a5e62e1 Mon Sep 17 00:00:00 2001 From: ktccd Date: Sat, 15 Jul 2017 23:44:13 +0200 Subject: [PATCH 2/2] Comments --- code/game/gamemodes/miniantags/borer/borer_event.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/miniantags/borer/borer_event.dm b/code/game/gamemodes/miniantags/borer/borer_event.dm index 201f7da200..7d74a065aa 100644 --- a/code/game/gamemodes/miniantags/borer/borer_event.dm +++ b/code/game/gamemodes/miniantags/borer/borer_event.dm @@ -3,6 +3,7 @@ typepath = /datum/round_event/borer weight = 10 //Default weight max_occurrences = 1 + min_players = 20 //10 is MINIMUM needed, but this is not a gamemode that does well in lowpop earliest_start = 24000 //40 min, double default timer /datum/round_event/borer