Merge branch 'main' of github.com:PenguinOwl/QuidProQuo

This commit is contained in:
Edith Boles 2021-10-04 10:12:31 -07:00
commit f7bce13511

View File

@ -20,7 +20,7 @@ public class SoundRitual extends Ritual {
@Override
public void execute(Player caster, Player target, Location location) {
Sound randomSound;
int randomInt = new Random().nextInt(13);
int randomInt = new Random().nextInt(15);
switch (randomInt) {
case 0:
randomSound = Sound.STEP_STONE;
@ -58,6 +58,12 @@ public class SoundRitual extends Ritual {
case 11:
randomSound = Sound.STEP_GRASS;
break;
case 12:
randomSound = Sound.ENDERDRAGON_GROWL;
break;
case 13:
randomSound = Sound.AMBIENCE_CAVE;
break;
default:
randomSound = Sound.ZOMBIE_HURT;
break;