Add fairy ring teleportation sound effect.

This commit is contained in:
Avi Weinstock
2021-11-11 00:38:55 -05:00
parent 36b35cbbd6
commit 25b4464512
2 changed files with 6 additions and 2 deletions
+1
View File
@@ -50,3 +50,4 @@
- Spiky Vambraces crafing added - Spiky Vambraces crafing added
- Fixed Typo in Professor Oddenstein's dialogue - Fixed Typo in Professor Oddenstein's dialogue
- Random Events can no longer spawn in the wilderness. - Random Events can no longer spawn in the wilderness.
- Fairy rings emit a sound when teleporting.
@@ -447,6 +447,9 @@ public class TeleportManager {
switch (++delay) { switch (++delay) {
case 2: case 2:
entity.animate(Animation.create(3265)); entity.animate(Animation.create(3265));
if(entity instanceof Player) {
((Player) entity).getAudioManager().send(1098, 1);
}
break; break;
case 4: case 4:
Quest quest = null; Quest quest = null;