Added Ender Dragon and Cave Noise sounds

This commit is contained in:
B1G-FUNGUS 2021-10-04 10:06:52 -07:00
parent e9642d4a6f
commit d0bbbb0a1d

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;