Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robrua committed Feb 25, 2015
1 parent aeb1156 commit b72be24
Show file tree
Hide file tree
Showing 14 changed files with 107 additions and 47 deletions.
1 change: 1 addition & 0 deletions android-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>orianna-android</artifactId>
<version>2.0.7</version>
<packaging>jar</packaging>

<parent>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>orianna</artifactId>
<version>2.0.7</version>
<packaging>jar</packaging>

<parent>
Expand Down
19 changes: 19 additions & 0 deletions src/com/robrua/orianna/api/core/AsyncRiotAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -2151,6 +2151,13 @@ public void run() {
}).start();
}

/**
* Removes any set proxy
*/
public static void removeProxy() {
BaseRiotAPI.removeProxy();
}

/**
* Sets the API Key to use for queries
*
Expand Down Expand Up @@ -2181,6 +2188,18 @@ public static void setMirror(final Region newMirror) {
BaseRiotAPI.setMirror(newMirror);
}

/**
* Sets the proxy to access the API through
*
* @param IP
* the IP address of the proxy server
* @param port
* the working port for the proxy server
*/
public static void setProxy(final String IP, final int port) {
BaseRiotAPI.setProxy(IP, port);
}

/**
* Sets multiple new rate limits for the API, removing any old ones
*
Expand Down
19 changes: 19 additions & 0 deletions src/com/robrua/orianna/api/core/RiotAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1321,6 +1321,13 @@ public static List<String> getVersions() {
return StaticDataAPI.getVersions();
}

/**
* Removes any set proxy
*/
public static void removeProxy() {
BaseRiotAPI.removeProxy();
}

/**
* Sets the API Key to use for queries
*
Expand Down Expand Up @@ -1351,6 +1358,18 @@ public static void setMirror(final Region newMirror) {
BaseRiotAPI.setMirror(newMirror);
}

/**
* Sets the proxy to access the API through
*
* @param IP
* the IP address of the proxy server
* @param port
* the working port for the proxy server
*/
public static void setProxy(final String IP, final int port) {
BaseRiotAPI.setProxy(IP, port);
}

/**
* Sets multiple new rate limits for the API, removing any old ones
*
Expand Down
3 changes: 2 additions & 1 deletion src/com/robrua/orianna/api/core/StaticDataAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
import com.robrua.orianna.type.dto.staticdata.SummonerSpellList;

public abstract class StaticDataAPI {
private static Set<Long> IGNORE_ITEMS = new HashSet<>(Arrays.asList(new Long[] {0L, 3210L, 3207L, 3176L, 3005L, 3131L, 2040L, 2039L, 3186L, 2037L, 3128L, 3188L}));
private static Set<Long> IGNORE_ITEMS = new HashSet<>(Arrays.asList(new Long[] {0L, 3210L, 3207L, 3176L, 3005L, 3131L, 2040L, 2039L, 3186L, 2037L, 3128L,
3188L}));

/**
* @param ID
Expand Down
19 changes: 19 additions & 0 deletions src/com/robrua/orianna/api/dto/AsyncBaseRiotAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,13 @@ public void run() {
}).start();
}

/**
* Removes any set proxy
*/
public static void removeProxy() {
BaseRiotAPI.removeProxy();
}

/**
* Sets the API Key to use for queries
*
Expand All @@ -1127,6 +1134,18 @@ public static void setMirror(final Region newMirror) {
BaseRiotAPI.setMirror(newMirror);
}

/**
* Sets the proxy to access the API through
*
* @param IP
* the IP address of the proxy server
* @param port
* the working port for the proxy server
*/
public static void setProxy(final String IP, final int port) {
BaseRiotAPI.setProxy(IP, port);
}

/**
* Sets multiple new rate limits for the API, removing any old ones
*
Expand Down
6 changes: 3 additions & 3 deletions src/com/robrua/orianna/type/core/common/QueueType.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
public enum QueueType {
ARAM_5x5(65), ASCENSION_5x5(96), BOT_5x5(7), BOT_5x5_BEGINNER(32), BOT_5x5_INTERMEDIATE(33), BOT_5x5_INTRO(31), BOT_ODIN_5x5(25), BOT_TT_3x3(52), BOT_URF_5x5(
83), COUNTER_PICK(-1), CUSTOM(0), FIRSTBLOOD_1x1(72), FIRSTBLOOD_2x2(73), GROUP_FINDER_5x5(61), HEXAKILL(98), KING_PORO_5x5(300), NIGHTMARE_BOT_5x5_RANK1(
91), NIGHTMARE_BOT_5x5_RANK2(92), NIGHTMARE_BOT_5x5_RANK5(93), NORMAL_3x3(8), NORMAL_5x5_BLIND(2), NORMAL_5x5_DRAFT(14), ODIN_5x5_BLIND(16), ODIN_5x5_DRAFT(
17), ONEFORALL_5x5(70), RANKED_PREMADE_3x3(9), RANKED_PREMADE_5x5(6), RANKED_SOLO_5x5(4), RANKED_TEAM_3x3(41), RANKED_TEAM_5x5(42), SR_6x6(75), URF_5x5(
76);
91), NIGHTMARE_BOT_5x5_RANK2(92), NIGHTMARE_BOT_5x5_RANK5(93), NORMAL_3x3(8), NORMAL_5x5_BLIND(2), NORMAL_5x5_DRAFT(14), ODIN_5x5_BLIND(16), ODIN_5x5_DRAFT(
17), ONEFORALL_5x5(70), RANKED_PREMADE_3x3(9), RANKED_PREMADE_5x5(6), RANKED_SOLO_5x5(4), RANKED_TEAM_3x3(41), RANKED_TEAM_5x5(42), SR_6x6(75), URF_5x5(
76);

private static final Map<Long, QueueType> IDs = new HashMap<>();
static {
Expand Down
10 changes: 5 additions & 5 deletions src/com/robrua/orianna/type/core/match/ParticipantTimeline.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
public class ParticipantTimeline extends OriannaObject<com.robrua.orianna.type.dto.match.ParticipantTimeline> {
private static final long serialVersionUID = 5241943122498925721L;
private ParticipantTimelineData ancientGolemAssistsPerMinCounts, ancientGolemKillsPerMinCounts, assistedLaneDeathsPerMinDeltas,
assistedLaneKillsPerMinDeltas, baronAssistsPerMinCounts, baronKillsPerMinCounts, creepsPerMinDeltas, CSDiffPerMinDeltas,
damageTakenDiffPerMinDeltas, damageTakenPerMinDeltas, dragonAssistsPerMinCounts, dragonKillsPerMinCounts, elderLizardAssistsPerMinCounts,
elderLizardKillsPerMinCounts, goldPerMinDeltas, inhibitorAssistsPerMinCounts, inhibitorKillsPerMinCounts, towerAssistsPerMinCounts,
towerKillsPerMinCounts, towerKillsPerMinDeltas, vilemawAssistsPerMinCounts, vilemawKillsPerMinCounts, wardsPerMinDeltas, XPDiffPerMinDeltas,
XPPerMinDeltas;
assistedLaneKillsPerMinDeltas, baronAssistsPerMinCounts, baronKillsPerMinCounts, creepsPerMinDeltas, CSDiffPerMinDeltas,
damageTakenDiffPerMinDeltas, damageTakenPerMinDeltas, dragonAssistsPerMinCounts, dragonKillsPerMinCounts, elderLizardAssistsPerMinCounts,
elderLizardKillsPerMinCounts, goldPerMinDeltas, inhibitorAssistsPerMinCounts, inhibitorKillsPerMinCounts, towerAssistsPerMinCounts,
towerKillsPerMinCounts, towerKillsPerMinDeltas, vilemawAssistsPerMinCounts, vilemawKillsPerMinCounts, wardsPerMinDeltas, XPDiffPerMinDeltas,
XPPerMinDeltas;

/**
* @param data
Expand Down
16 changes: 8 additions & 8 deletions src/com/robrua/orianna/type/dto/game/RawStats.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
public class RawStats extends OriannaDto {
private static final long serialVersionUID = -7331494090056610673L;
private Integer assists, barracksKilled, championsKilled, combatPlayerScore, consumablesPurchased, damageDealtPlayer, doubleKills, firstBlood, gold,
goldEarned, goldSpent, item0, item1, item2, item3, item4, item5, item6, itemsPurchased, killingSprees, largestCriticalStrike, largestKillingSpree,
largestMultiKill, legendaryItemsCreated, level, magicDamageDealtPlayer, magicDamageDealtToChampions, magicDamageTaken, minionsDenied,
minionsKilled, neutralMinionsKilled, neutralMinionsKilledEnemyJungle, neutralMinionsKilledYourJungle, nodeCapture, nodeCaptureAssist,
nodeNeutralize, nodeNeutralizeAssist, numDeaths, numItemsBought, objectivePlayerScore, pentaKills, physicalDamageDealtPlayer,
physicalDamageDealtToChampions, physicalDamageTaken, quadraKills, sightWardsBought, spell1Cast, spell2Cast, spell3Cast, spell4Cast,
summonSpell1Cast, summonSpell2Cast, superMonsterKilled, team, teamObjective, timePlayed, totalDamageDealt, totalDamageDealtToChampions,
totalDamageTaken, totalHeal, totalPlayerScore, totalScoreRank, totalTimeCrowdControlDealt, totalUnitsHealed, tripleKills, trueDamageDealtPlayer,
trueDamageDealtToChampions, trueDamageTaken, turretsKilled, unrealKills, victoryPointTotal, visionWardsBought, wardKilled, wardPlaced;
goldEarned, goldSpent, item0, item1, item2, item3, item4, item5, item6, itemsPurchased, killingSprees, largestCriticalStrike, largestKillingSpree,
largestMultiKill, legendaryItemsCreated, level, magicDamageDealtPlayer, magicDamageDealtToChampions, magicDamageTaken, minionsDenied,
minionsKilled, neutralMinionsKilled, neutralMinionsKilledEnemyJungle, neutralMinionsKilledYourJungle, nodeCapture, nodeCaptureAssist,
nodeNeutralize, nodeNeutralizeAssist, numDeaths, numItemsBought, objectivePlayerScore, pentaKills, physicalDamageDealtPlayer,
physicalDamageDealtToChampions, physicalDamageTaken, quadraKills, sightWardsBought, spell1Cast, spell2Cast, spell3Cast, spell4Cast,
summonSpell1Cast, summonSpell2Cast, superMonsterKilled, team, teamObjective, timePlayed, totalDamageDealt, totalDamageDealtToChampions,
totalDamageTaken, totalHeal, totalPlayerScore, totalScoreRank, totalTimeCrowdControlDealt, totalUnitsHealed, tripleKills, trueDamageDealtPlayer,
trueDamageDealtToChampions, trueDamageTaken, turretsKilled, unrealKills, victoryPointTotal, visionWardsBought, wardKilled, wardPlaced;
private Boolean win, nexusKilled;

/*
Expand Down
12 changes: 6 additions & 6 deletions src/com/robrua/orianna/type/dto/match/ParticipantStats.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
public class ParticipantStats extends OriannaDto {
private static final long serialVersionUID = 6303683508721189211L;
private Long assists, champLevel, combatPlayerScore, deaths, doubleKills, goldEarned, goldSpent, inhibitorKills, item0, item1, item2, item3, item4, item5,
item6, killingSprees, kills, largestCriticalStrike, largestKillingSpree, largestMultiKill, magicDamageDealt, magicDamageDealtToChampions,
magicDamageTaken, minionsKilled, neutralMinionsKilled, neutralMinionsKilledEnemyJungle, neutralMinionsKilledTeamJungle, nodeCapture,
nodeCaptureAssist, nodeNeutralize, nodeNeutralizeAssist, objectivePlayerScore, pentaKills, physicalDamageDealt, physicalDamageDealtToChampions,
physicalDamageTaken, quadraKills, sightWardsBoughtInGame, teamObjective, totalDamageDealt, totalDamageDealtToChampions, totalDamageTaken,
totalHeal, totalPlayerScore, totalScoreRank, totalTimeCrowdControlDealt, totalUnitsHealed, towerKills, tripleKills, trueDamageDealt,
trueDamageDealtToChampions, trueDamageTaken, unrealKills, visionWardsBoughtInGame, wardsKilled, wardsPlaced;
item6, killingSprees, kills, largestCriticalStrike, largestKillingSpree, largestMultiKill, magicDamageDealt, magicDamageDealtToChampions,
magicDamageTaken, minionsKilled, neutralMinionsKilled, neutralMinionsKilledEnemyJungle, neutralMinionsKilledTeamJungle, nodeCapture,
nodeCaptureAssist, nodeNeutralize, nodeNeutralizeAssist, objectivePlayerScore, pentaKills, physicalDamageDealt, physicalDamageDealtToChampions,
physicalDamageTaken, quadraKills, sightWardsBoughtInGame, teamObjective, totalDamageDealt, totalDamageDealtToChampions, totalDamageTaken,
totalHeal, totalPlayerScore, totalScoreRank, totalTimeCrowdControlDealt, totalUnitsHealed, towerKills, tripleKills, trueDamageDealt,
trueDamageDealtToChampions, trueDamageTaken, unrealKills, visionWardsBoughtInGame, wardsKilled, wardsPlaced;
private Boolean winner, firstBloodAssist, firstBloodKill, firstInhibitorKill, firstInhibitorAssist, firstTowerAssist, firstTowerKill;

/*
Expand Down
10 changes: 5 additions & 5 deletions src/com/robrua/orianna/type/dto/match/ParticipantTimeline.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
public class ParticipantTimeline extends OriannaDto {
private static final long serialVersionUID = 7060687250015890854L;
private ParticipantTimelineData ancientGolemAssistsPerMinCounts, ancientGolemKillsPerMinCounts, assistedLaneDeathsPerMinDeltas,
assistedLaneKillsPerMinDeltas, baronAssistsPerMinCounts, baronKillsPerMinCounts, creepsPerMinDeltas, csDiffPerMinDeltas,
damageTakenDiffPerMinDeltas, damageTakenPerMinDeltas, dragonAssistsPerMinCounts, dragonKillsPerMinCounts, elderLizardAssistsPerMinCounts,
elderLizardKillsPerMinCounts, goldPerMinDeltas, inhibitorAssistsPerMinCounts, inhibitorKillsPerMinCounts, towerAssistsPerMinCounts,
towerKillsPerMinCounts, towerKillsPerMinDeltas, vilemawAssistsPerMinCounts, vilemawKillsPerMinCounts, wardsPerMinDeltas, xpDiffPerMinDeltas,
xpPerMinDeltas;
assistedLaneKillsPerMinDeltas, baronAssistsPerMinCounts, baronKillsPerMinCounts, creepsPerMinDeltas, csDiffPerMinDeltas,
damageTakenDiffPerMinDeltas, damageTakenPerMinDeltas, dragonAssistsPerMinCounts, dragonKillsPerMinCounts, elderLizardAssistsPerMinCounts,
elderLizardKillsPerMinCounts, goldPerMinDeltas, inhibitorAssistsPerMinCounts, inhibitorKillsPerMinCounts, towerAssistsPerMinCounts,
towerKillsPerMinCounts, towerKillsPerMinDeltas, vilemawAssistsPerMinCounts, vilemawKillsPerMinCounts, wardsPerMinDeltas, xpDiffPerMinDeltas,
xpPerMinDeltas;
private String lane, role;

/*
Expand Down
20 changes: 10 additions & 10 deletions src/com/robrua/orianna/type/dto/staticdata/BasicDataStats.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
public class BasicDataStats extends OriannaDto {
private static final long serialVersionUID = 3565726158610875915L;
private Double FlatArmorMod, FlatAttackSpeedMod, FlatBlockMod, FlatCritChanceMod, FlatCritDamageMod, FlatEXPBonus, FlatEnergyPoolMod, FlatEnergyRegenMod,
FlatHPPoolMod, FlatHPRegenMod, FlatMPPoolMod, FlatMPRegenMod, FlatMagicDamageMod, FlatMovementSpeedMod, FlatPhysicalDamageMod, FlatSpellBlockMod,
PercentArmorMod, PercentAttackSpeedMod, PercentBlockMod, PercentCritChanceMod, PercentCritDamageMod, PercentDodgeMod, PercentEXPBonus,
PercentHPPoolMod, PercentHPRegenMod, PercentLifeStealMod, PercentMPPoolMod, PercentMPRegenMod, PercentMagicDamageMod, PercentMovementSpeedMod,
PercentPhysicalDamageMod, PercentSpellBlockMod, PercentSpellVampMod, rFlatArmorModPerLevel, rFlatArmorPenetrationMod,
rFlatArmorPenetrationModPerLevel, rFlatCritChanceModPerLevel, rFlatCritDamageModPerLevel, rFlatDodgeMod, rFlatDodgeModPerLevel,
rFlatEnergyModPerLevel, rFlatEnergyRegenModPerLevel, rFlatGoldPer10Mod, rFlatHPModPerLevel, rFlatHPRegenModPerLevel, rFlatMPModPerLevel,
rFlatMPRegenModPerLevel, rFlatMagicDamageModPerLevel, rFlatMagicPenetrationMod, rFlatMagicPenetrationModPerLevel, rFlatMovementSpeedModPerLevel,
rFlatPhysicalDamageModPerLevel, rFlatSpellBlockModPerLevel, rFlatTimeDeadMod, rFlatTimeDeadModPerLevel, rPercentArmorPenetrationMod,
rPercentArmorPenetrationModPerLevel, rPercentAttackSpeedModPerLevel, rPercentCooldownMod, rPercentCooldownModPerLevel, rPercentMagicPenetrationMod,
rPercentMagicPenetrationModPerLevel, rPercentMovementSpeedModPerLevel, rPercentTimeDeadMod, rPercentTimeDeadModPerLevel;
FlatHPPoolMod, FlatHPRegenMod, FlatMPPoolMod, FlatMPRegenMod, FlatMagicDamageMod, FlatMovementSpeedMod, FlatPhysicalDamageMod, FlatSpellBlockMod,
PercentArmorMod, PercentAttackSpeedMod, PercentBlockMod, PercentCritChanceMod, PercentCritDamageMod, PercentDodgeMod, PercentEXPBonus,
PercentHPPoolMod, PercentHPRegenMod, PercentLifeStealMod, PercentMPPoolMod, PercentMPRegenMod, PercentMagicDamageMod, PercentMovementSpeedMod,
PercentPhysicalDamageMod, PercentSpellBlockMod, PercentSpellVampMod, rFlatArmorModPerLevel, rFlatArmorPenetrationMod,
rFlatArmorPenetrationModPerLevel, rFlatCritChanceModPerLevel, rFlatCritDamageModPerLevel, rFlatDodgeMod, rFlatDodgeModPerLevel,
rFlatEnergyModPerLevel, rFlatEnergyRegenModPerLevel, rFlatGoldPer10Mod, rFlatHPModPerLevel, rFlatHPRegenModPerLevel, rFlatMPModPerLevel,
rFlatMPRegenModPerLevel, rFlatMagicDamageModPerLevel, rFlatMagicPenetrationMod, rFlatMagicPenetrationModPerLevel, rFlatMovementSpeedModPerLevel,
rFlatPhysicalDamageModPerLevel, rFlatSpellBlockModPerLevel, rFlatTimeDeadMod, rFlatTimeDeadModPerLevel, rPercentArmorPenetrationMod,
rPercentArmorPenetrationModPerLevel, rPercentAttackSpeedModPerLevel, rPercentCooldownMod, rPercentCooldownModPerLevel, rPercentMagicPenetrationMod,
rPercentMagicPenetrationModPerLevel, rPercentMovementSpeedModPerLevel, rPercentTimeDeadMod, rPercentTimeDeadModPerLevel;

/*
* (non-Javadoc)
Expand Down
2 changes: 1 addition & 1 deletion src/com/robrua/orianna/type/dto/staticdata/Stats.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class Stats extends OriannaDto {
private static final long serialVersionUID = -5686446191361451936L;
private Double armor, armorperlevel, attackdamage, attackdamageperlevel, attackrange, attackspeedoffset, attackspeedperlevel, crit, critperlevel, hp,
hpperlevel, hpregen, hpregenperlevel, movespeed, mp, mpperlevel, mpregen, mpregenperlevel, spellblock, spellblockperlevel;
hpperlevel, hpregen, hpregenperlevel, movespeed, mp, mpperlevel, mpregen, mpregenperlevel, spellblock, spellblockperlevel;

/*
* (non-Javadoc)
Expand Down
16 changes: 8 additions & 8 deletions src/com/robrua/orianna/type/dto/stats/AggregatedStats.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
public class AggregatedStats extends OriannaDto {
private static final long serialVersionUID = 4301211932958625756L;
private Integer averageAssists, averageChampionsKilled, averageCombatPlayerScore, averageNodeCapture, averageNodeCaptureAssist, averageNodeNeutralize,
averageNodeNeutralizeAssist, averageNumDeaths, averageObjectivePlayerScore, averageTeamObjective, averageTotalPlayerScore, botGamesPlayed,
killingSpree, maxAssists, maxChampionsKilled, maxCombatPlayerScore, maxLargestCriticalStrike, maxLargestKillingSpree, maxNodeCapture,
maxNodeCaptureAssist, maxNodeNeutralize, maxNodeNeutralizeAssist, maxNumDeaths, maxObjectivePlayerScore, maxTeamObjective, maxTimePlayed,
maxTimeSpentLiving, maxTotalPlayerScore, mostChampionKillsPerSession, mostSpellsCast, normalGamesPlayed, rankedPremadeGamesPlayed,
rankedSoloGamesPlayed, totalAssists, totalChampionKills, totalDamageDealt, totalDamageTaken, totalDeathsPerSession, totalDoubleKills,
totalFirstBlood, totalGoldEarned, totalHeal, totalMagicDamageDealt, totalMinionKills, totalNeutralMinionsKilled, totalNodeCapture,
totalNodeNeutralize, totalPentaKills, totalPhysicalDamageDealt, totalQuadraKills, totalSessionsLost, totalSessionsPlayed, totalSessionsWon,
totalTripleKills, totalTurretsKilled, totalUnrealKills;
averageNodeNeutralizeAssist, averageNumDeaths, averageObjectivePlayerScore, averageTeamObjective, averageTotalPlayerScore, botGamesPlayed,
killingSpree, maxAssists, maxChampionsKilled, maxCombatPlayerScore, maxLargestCriticalStrike, maxLargestKillingSpree, maxNodeCapture,
maxNodeCaptureAssist, maxNodeNeutralize, maxNodeNeutralizeAssist, maxNumDeaths, maxObjectivePlayerScore, maxTeamObjective, maxTimePlayed,
maxTimeSpentLiving, maxTotalPlayerScore, mostChampionKillsPerSession, mostSpellsCast, normalGamesPlayed, rankedPremadeGamesPlayed,
rankedSoloGamesPlayed, totalAssists, totalChampionKills, totalDamageDealt, totalDamageTaken, totalDeathsPerSession, totalDoubleKills,
totalFirstBlood, totalGoldEarned, totalHeal, totalMagicDamageDealt, totalMinionKills, totalNeutralMinionsKilled, totalNodeCapture,
totalNodeNeutralize, totalPentaKills, totalPhysicalDamageDealt, totalQuadraKills, totalSessionsLost, totalSessionsPlayed, totalSessionsWon,
totalTripleKills, totalTurretsKilled, totalUnrealKills;

/*
* (non-Javadoc)
Expand Down

0 comments on commit b72be24

Please sign in to comment.