- Fixed the bump bug. Kind of. I circumvented it.
This commit is contained in:
@@ -100,7 +100,8 @@ public class ProfileMatcher {
|
||||
|
||||
// Get bump skills.
|
||||
// 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));
|
||||
|
||||
// Get collect skills.
|
||||
|
||||
Reference in New Issue
Block a user