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); }