Skip to content

Commit

Permalink
fix: remove beholder step sound .. he has no legs!
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Jan 13, 2024
1 parent e7bc2e4 commit 7e73cf3
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.klikli_dev.occultism.network.OccultismPackets;
import com.klikli_dev.occultism.registry.OccultismAdvancements;
import com.klikli_dev.occultism.util.FamiliarUtil;
import net.minecraft.core.BlockPos;
import net.minecraft.core.particles.DustParticleOptions;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.sounds.SoundEvents;
Expand All @@ -45,6 +46,7 @@
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.ServerLevelAccessor;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.phys.AABB;
import net.minecraft.world.phys.Vec2;
import net.minecraft.world.phys.Vec3;
Expand Down Expand Up @@ -83,6 +85,11 @@ public void curioTick(LivingEntity wearer) {
this.tickGlow(wearer);
}

@Override
protected void playStepSound(BlockPos pPos, BlockState pState) {

}

@Override
public boolean canBlacksmithUpgrade() {
return !this.hasBlacksmithUpgrade();
Expand Down

0 comments on commit 7e73cf3

Please sign in to comment.