mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-26 02:09:17 +00:00
Add sound when an arrow hits a player
This commit is contained in:
@@ -145,6 +145,14 @@ public class JavaNotifyClientTranslator extends PacketTranslator<ServerNotifyCli
|
||||
session.sendMessage(LocaleUtils.getLocaleString("block.minecraft.spawn.not_valid",
|
||||
session.getClientData().getLanguageCode()));
|
||||
break;
|
||||
case ARROW_HIT_PLAYER:
|
||||
PlaySoundPacket arrowSoundPacket = new PlaySoundPacket();
|
||||
arrowSoundPacket.setSound("random.orb");
|
||||
arrowSoundPacket.setPitch(0.5f);
|
||||
arrowSoundPacket.setVolume(0.5f);
|
||||
arrowSoundPacket.setPosition(entity.getPosition());
|
||||
session.sendUpstreamPacket(arrowSoundPacket);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user