diff --git a/client/src/client/util/PlayerController.java b/client/src/client/util/PlayerController.java index 215c085..e67df49 100755 --- a/client/src/client/util/PlayerController.java +++ b/client/src/client/util/PlayerController.java @@ -148,10 +148,8 @@ public class PlayerController { this.curBlockDamageMP += block.getPlayerRelativeBlockHardness(this.gm.player, this.gm.player.worldObj, posBlock); if(this.stepSoundTickCounter % 4.0F == 0.0F && block.sound.getStepSound() != null) { - this.gm.getSoundManager() - .playSound(new PositionedSound(block.sound.getStepSound(), 0.25F, - /* block.sound.getFrequency() * 0.5F, */ (float)posBlock.getX() + 0.5F, (float)posBlock.getY() + 0.5F, - (float)posBlock.getZ() + 0.5F)); + this.gm.getSoundManager().playSound(new PositionedSound(block.sound.getStepSound(), 0.25F, + (float)posBlock.getX() + 0.5F, (float)posBlock.getY() + 0.5F, (float)posBlock.getZ() + 0.5F)); } ++this.stepSoundTickCounter;