Round settings + Players To Start.

This commit is contained in:
MrOkiDoki 2023-08-11 14:57:50 +03:00
parent e698acae60
commit 120b94c5f9
1 changed files with 3 additions and 3 deletions

View File

@ -59,12 +59,12 @@ namespace BattleBitAPI.Server
this.mResources.IsDirtyRoundSettings = true;
}
}
public int PlayersToStart
public int SecondsLeftToEndOfRound
{
get => this.mResources._RoundSettings.PlayersToStart;
get => this.mResources._RoundSettings.SecondsLeftToEndOfRound;
set
{
this.mResources._RoundSettings.PlayersToStart = value;
this.mResources._RoundSettings.SecondsLeftToEndOfRound = value;
this.mResources.IsDirtyRoundSettings = true;
}
}