-1 team kills for suicide (only after bridge drop)
This commit is contained in:
parent
f090ed9313
commit
802415be8f
@ -168,6 +168,7 @@ public class Bridge extends TeamGame implements OreObsfucation
|
||||
"Gather resources and prepare for combat.",
|
||||
"After 10 minutes, The Bridges will emerge.",
|
||||
"Special loot is located in the center.",
|
||||
"Killing yourself counts as -1 team kill.",
|
||||
"Team with the most kills wins!"
|
||||
};
|
||||
}
|
||||
@ -1201,6 +1202,13 @@ public class Bridge extends TeamGame implements OreObsfucation
|
||||
else
|
||||
_tournamentKills.put(killerTeam, _tournamentKills.get(killerTeam) + 1);
|
||||
}
|
||||
else if (_bridgesDown)
|
||||
{
|
||||
if (!_tournamentKills.containsKey(killedTeam))
|
||||
_tournamentKills.put(killedTeam, -1);
|
||||
else
|
||||
_tournamentKills.put(killedTeam, _tournamentKills.get(killedTeam) - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user