Fix electrocution stat tracker ONLY giving for teammate hits

This commit is contained in:
Spencer 2017-11-24 14:49:59 -05:00 committed by Alexander Meech
parent f13547d9da
commit 9477345823
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public class ElectrocutionStatTracker extends StatTracker<Game>
GameTeam struckTeam = getGame().GetTeam(struckPlayer);
if (struckTeam != null && playerTeam != null && struckTeam != playerTeam) {
if (struckTeam != null && playerTeam != null && struckTeam == playerTeam) {
continue;
}