diff --git a/Content.Server/_Honk/RoundEndVote/RoundEndVoteSystem.cs b/Content.Server/_Honk/RoundEndVote/RoundEndVoteSystem.cs index 6730321760..9911d3b8ae 100644 --- a/Content.Server/_Honk/RoundEndVote/RoundEndVoteSystem.cs +++ b/Content.Server/_Honk/RoundEndVote/RoundEndVoteSystem.cs @@ -24,15 +24,17 @@ public sealed class RoundEndVoteSystem : EntitySystem if (_gameTicker.RunLevel != GameRunLevel.PreRoundLobby) return; - var player = _playerManager.PlayerCount >= 20; - - if (player) + if (_playerManager.PlayerCount >= 15) { _voteManager.CreateStandardVote(null, StandardVoteType.Preset); } + else if (_playerManager.PlayerCount >= 5) + { + _gameTicker.SetGamePreset("Extended"); + } else { - _gameTicker.SetGamePreset("Secret"); + _gameTicker.SetGamePreset("Greenshift"); } _voteManager.CreateStandardVote(null, StandardVoteType.Map); diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 2a10498b80..f5873438d7 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -33,7 +33,7 @@ - extended - shittersafari name: extended-title - showInVote: false #2boring2vote + showInVote: true # HONK EDIT description: extended-description rules: - BasicStationEventScheduler @@ -46,7 +46,7 @@ - greenshift - shittersafarideluxeedition name: greenshift-title - showInVote: false #4boring4vote + showInVote: true # HONK EDIT description: greenshift-description rules: - BasicRoundstartVariation