Compare commits
2 Commits
b646019307
...
80e4641eb9
Author | SHA1 | Date | |
---|---|---|---|
80e4641eb9 | |||
e2dc0d5d73 |
@ -473,7 +473,7 @@ declare Text[] LostLifeAccountIds;
|
|||||||
declare Text[] EliminatedAccountIds;
|
declare Text[] EliminatedAccountIds;
|
||||||
declare Integer[] EliminatedRanks;
|
declare Integer[] EliminatedRanks;
|
||||||
|
|
||||||
if (Round_ForceEndRound || Round_SkipPauseRound) {
|
if (Round_ForceEndRound || Round_SkipPauseRound || Round_Skipped) {
|
||||||
// Cancel points
|
// Cancel points
|
||||||
foreach (Score in Scores) {
|
foreach (Score in Scores) {
|
||||||
Scores::SetPlayerRoundPoints(Score, 0);
|
Scores::SetPlayerRoundPoints(Score, 0);
|
||||||
@ -1021,8 +1021,8 @@ Void UpdateMatchInfos(Integer _CurrentRoundNb, Integer _LossOfLife, Integer _Ali
|
|||||||
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until Match Round "^ _Milestone;
|
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until Match Round "^ _Milestone;
|
||||||
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until Match Round "^ _Milestone;
|
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until Match Round "^ _Milestone;
|
||||||
} else if (S_EliminationMode == C_ElimMode_Lives && _LossOfLife > 1 && _Milestone > 1) {
|
} else if (S_EliminationMode == C_ElimMode_Lives && _LossOfLife > 1 && _Milestone > 1) {
|
||||||
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until "^ _Milestone ^" lives remaining";
|
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until "^ _Milestone ^" lives left";
|
||||||
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until "^ _Milestone ^" lives remaining";
|
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until "^ _Milestone ^" lives left";
|
||||||
} else if (S_EliminationMode == C_ElimMode_Official && _LossOfLife > 1 && _Milestone > 1) {
|
} else if (S_EliminationMode == C_ElimMode_Official && _LossOfLife > 1 && _Milestone > 1) {
|
||||||
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until "^ _Milestone ^" players are alive";
|
MatchInfo ^= "\n"^ _LossOfLife ^" lives lost until "^ _Milestone ^" players are alive";
|
||||||
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until "^ _Milestone ^" players are alive";
|
ScoreTablesInfo ^= "\n"^ _LossOfLife ^" players will lose a life until "^ _Milestone ^" players are alive";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user