Уменьшил минимально количество игроков для режимов

This commit is contained in:
Jabak
2024-08-06 21:40:06 +03:00
parent b87e881401
commit 771a7fd0d8
4 changed files with 8 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ public sealed partial class WizardRuleComponent : Component
public EntityUid? TargetStation;
[DataField("minPlayers")]
public int MinPlayers = 20;
public int MinPlayers = 15;
[DataField("announcementOnWizardDeath")]
public bool AnnouncementOnWizardDeath = true;

View File

@@ -478,7 +478,7 @@ namespace Content.Shared.CCVar
*/
public static readonly CVarDef<int> ZombieMinPlayers =
CVarDef.Create("zombie.min_players", 20);
CVarDef.Create("zombie.min_players", 15);
/*
* Pirates

View File

@@ -367,7 +367,7 @@ public sealed class WhiteCVars
*/
public static readonly CVarDef<int> CultMinPlayers =
CVarDef.Create("white.cult_min_players", 20, CVar.SERVERONLY | CVar.ARCHIVE);
CVarDef.Create("white.cult_min_players", 15, CVar.SERVERONLY | CVar.ARCHIVE);
public static readonly CVarDef<int> CultMaxStartingPlayers =
CVarDef.Create("white.cult_max_starting_players", 4, CVar.SERVERONLY | CVar.ARCHIVE);

View File

@@ -126,6 +126,7 @@
name: nukeops-title
description: nukeops-description
showInVote: true
minPlayers: 15
rules:
- Nukeops
- SubGamemodesRule
@@ -142,6 +143,7 @@
name: rev-title
description: rev-description
showInVote: true
minPlayers: 15
rules:
- Revolutionary
- SubGamemodesRule
@@ -160,6 +162,7 @@
name: zombie-title
description: zombie-description
showInVote: true
minPlayers: 15
rules:
- Zombie
- BasicStationEventScheduler
@@ -187,7 +190,7 @@
name: cult-title
description: cult-description
showInVote: true
minPlayers: 20
minPlayers: 15
rules:
- Cult
- SubGamemodesRule
@@ -218,7 +221,7 @@
name: wizard-title
description: wizard-description
showInVote: true
minPlayers: 20
minPlayers: 15
rules:
- Wizard
- SubGamemodesRule