fixed haste ritual
This commit is contained in:
parent
77d43333bf
commit
45278c7dd1
@ -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));
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user