From ce65339a04414c581efe1d95c1bce9094c4bbcd4 Mon Sep 17 00:00:00 2001 From: Vos Date: Tue, 11 Nov 2025 11:27:21 -0600 Subject: [PATCH] Entropy makes sounds for all entities --- .../com/acethewildfire/acesbs/block/custom/EntropyBlock.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/java/com/acethewildfire/acesbs/block/custom/EntropyBlock.java b/src/main/java/com/acethewildfire/acesbs/block/custom/EntropyBlock.java index 12493ed..1dc37c1 100644 --- a/src/main/java/com/acethewildfire/acesbs/block/custom/EntropyBlock.java +++ b/src/main/java/com/acethewildfire/acesbs/block/custom/EntropyBlock.java @@ -62,9 +62,7 @@ public class EntropyBlock extends Block { // 1d is roughly 4.5 blocks worth of upward velocity entity.addVelocity(randomVelocityX, randomVelocityY, randomVelocityZ); - if(entity instanceof PlayerEntity){ - world.playSound(entity, pos, SoundEvents.ENTITY_ENDERMAN_HURT, SoundCategory.BLOCKS, 10f, 0.4f); - } + world.playSound(entity, pos, SoundEvents.ENTITY_ENDERMAN_HURT, SoundCategory.BLOCKS, 10f, 0.4f); super.onSteppedOn(world, pos, state, entity); }