浏览代码

Reduced Roll XP CD from 60s - > 10s

nossr50 6 年之前
父节点
当前提交
e5de240eb4
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. 5 0
      Changelog.txt
  2. 1 1
      src/main/java/com/gmail/nossr50/skills/acrobatics/AcrobaticsManager.java

+ 5 - 0
Changelog.txt

@@ -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)

+ 1 - 1
src/main/java/com/gmail/nossr50/skills/acrobatics/AcrobaticsManager.java

@@ -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()