- Fixed the bump bug. Kind of. I circumvented it.

This commit is contained in:
Marshall
2012-03-18 20:40:03 -04:00
parent 6ae266ee89
commit 54bf5937f0

View File

@@ -100,7 +100,8 @@ public class ProfileMatcher {
// Get bump skills. // Get bump skills.
// Relevant to: BLOCK. // Relevant to: BLOCK.
skillHolder = (int) (100 * playerMetrics.percentageBlocksDestroyed); skillHolder = (int) (100 * ((playerMetrics.percentageEmptyBlockesDestroyed
+ playerMetrics.percentageCoinBlocksDestroyed + playerMetrics.percentagePowerBlockDestroyed) / 3));
skillVector.put(SKILL.BUMP, new Integer(skillHolder)); skillVector.put(SKILL.BUMP, new Integer(skillHolder));
// Get collect skills. // Get collect skills.