fixed haste ritual

This commit is contained in:
B1G-FUNGUS 2021-10-04 20:07:42 -07:00
parent 77d43333bf
commit 45278c7dd1

View File

@ -25,9 +25,9 @@ public class HasteRitual extends Ritual {
@Override
public void execute(Player caster, Player target, Location location) {
Random random = new Random();
if(random.nextInt(10) == 0) {
target.addPotionEffect(new PotionEffect(PotionEffectType.FAST_DIGGING, 45, 50));
} else target.addPotionEffect(new PotionEffect(PotionEffectType.SLOW_DIGGING, 45, 50));
if(random.nextInt(10) != 0) {
target.addPotionEffect(new PotionEffect(PotionEffectType.FAST_DIGGING, 45 * 20, 85));
} else target.addPotionEffect(new PotionEffect(PotionEffectType.SLOW_DIGGING, 45 * 20, 50));
}
}