Reduced Roll XP CD from 60s - > 10s

This commit is contained in:
nossr50 2019-04-08 17:58:06 -07:00
parent 0ba3d7bd68
commit e5de240eb4
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,11 @@ Key:
! Change
- Removal
Version 2.1.38
Roll XP cooldown down from 60 seconds to 10
Updated pt_BR localization (thanks FabioZumbi12)
NOTE: The XP Cooldown will be configurable in 2.2 which is nearing the finish line
Version 2.1.37
Fixed a potential IndexOutOfBoundsException when informing a disconnected player that their Blast Mining was off CD
Updated hu_HU locale (thanks andris)

View File

@ -26,7 +26,7 @@ public class AcrobaticsManager extends SkillManager {
}
private long rollXPCooldown = 0;
private long rollXPInterval = (1000 * 60); //1 Minute
private long rollXPInterval = (1000 * 10); //1 Minute
private long rollXPIntervalLengthen = (1000 * 10); //10 Seconds
public boolean canGainRollXP()