Posted October 1, 20178 yr Hey, so I wanted to play a different sound whenever a specific item is picked up, but all that plays is the original Minecraft sound. Please help. My code: @SubscribeEvent(priority = EventPriority.HIGHEST) public void onItemPickup(ItemPickupEvent e) { if (e.pickedUp.getEntityItem().getItem().equals(DinocraftItems.CHLOROPHYTE_INGOT)) { e.player.playSound(SoundEvents.ENTITY_ENDERDRAGON_GROWL, 1.0F, 1.0F); } } Thanks!
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.