1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-29 08:30:03 -05:00

Grief: remove random team code

Not working properly
This commit is contained in:
Jbleezy
2021-12-17 15:44:51 -08:00
parent 41670d8e26
commit e8408dcccc

View File

@ -61,25 +61,6 @@ set_team()
teamplayersallies = countplayers("allies");
teamplayersaxis = countplayers("axis");
if(teamplayersallies == teamplayersaxis)
{
if(randomInt(100) < 50)
{
self.team = "axis";
self.sessionteam = "axis";
self.pers["team"] = "axis";
self._encounters_team = "A";
}
else
{
self.team = "allies";
self.sessionteam = "allies";
self.pers["team"] = "allies";
self._encounters_team = "B";
}
}
else
{
if(teamplayersallies > teamplayersaxis)
{
self.team = "axis";
@ -94,7 +75,6 @@ set_team()
self.pers["team"] = "allies";
self._encounters_team = "B";
}
}
}
grief_score_hud()