2
0
Эх сурвалжийг харах

Fixed calculations on Reduced Cooldown perk

GJ 13 жил өмнө
parent
commit
dce1d7ba39

+ 3 - 3
src/main/java/com/gmail/nossr50/util/Skills.java

@@ -43,13 +43,13 @@ public class Skills {
 
 
         //Reduced Cooldown Donor Perks
         //Reduced Cooldown Donor Perks
         if (player.hasPermission("mcmmo.perks.cooldowns.halved")) {
         if (player.hasPermission("mcmmo.perks.cooldowns.halved")) {
-            adjustedCooldown = adjustedCooldown / 2;
+            adjustedCooldown = (int) (adjustedCooldown * 0.5);
         }
         }
         else if (player.hasPermission("mcmmo.perks.cooldowns.thirded")) {
         else if (player.hasPermission("mcmmo.perks.cooldowns.thirded")) {
-            adjustedCooldown = adjustedCooldown / 3;
+            adjustedCooldown = (int) (adjustedCooldown * 0.66);
         }
         }
         else if (player.hasPermission("mcmmo.perks.cooldowns.quartered")) {
         else if (player.hasPermission("mcmmo.perks.cooldowns.quartered")) {
-            adjustedCooldown = adjustedCooldown / 4;
+            adjustedCooldown = (int) (adjustedCooldown * 0.75);
         }
         }
 
 
         if (currentTime - oldTime >= (adjustedCooldown * TIME_CONVERSION_FACTOR)) {
         if (currentTime - oldTime >= (adjustedCooldown * TIME_CONVERSION_FACTOR)) {