Mineuniverse
Log in Register
Mods

Bobber Begone

A simple fabric client mod that removes the bobber render when hooked
by nu11une
Claim this project
425 downloads
0 likes
Updated Jun 30, 2026
0 hypes

Fabric client mod for 1.15-1.19 that removes the bobber overlay when you get hooked by yourself/another player

 

The description is too short apparently so here's the entire Java source code I guess. I really don't know how else to elaborate on this, it is a very simple mod.

 

package net.nu11une.bobberbegone.mixin;
 
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.render.VertexConsumerProvider;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.entity.projectile.FishingBobberEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
 
@Mixin(net.minecraft.client.render.entity.FishingBobberEntityRenderer.class)
public class FishingBobberEntityRendererMixin {
    @Inject(at = @At("HEAD"), method = "render(Lnet/minecraft/entity/projectile/FishingBobberEntity;FFLnet/minecraft/client/util/math/MatrixStack;Lnet/minecraft/client/render            /VertexConsumerProvider;I)V", cancellable = true)
    public void renderCallback(FishingBobberEntity fishingBobberEntity, float f, float g, MatrixStack matrixStack, VertexConsumerProvider vertexConsumerProvider, int i, CallbackInfo ci){
        if((MinecraftClient.getInstance().options == null || MinecraftClient.getInstance().options.getPerspective().isFirstPerson()) && fishingBobberEntity.getHookedEntity() ==     MinecraftClient.getInstance().player){
            ci.cancel();
        }
    }

}

No files available for download.

More from nu11une

Warden Loot [Fabric]
148,849
AIOTs Expanded [Fabric]
11,633

You Might Also Like

Liberty's Villagers
Quality of Life and AI improvements for Villagers
9,968,428
No More Pop-ups
A Minecraft mod to remove in-game pop-ups
996,708
BetterRandomSourceConcurrencyCrash
Improved logging of crashes caused by mods accessing RandomSources from the wrong thread
99,371
Exit Confirmation
Often accidentally closed Minecraft? This mod might help!
99,067
NoDynamicFps
Adds an option to disable Vanilla's Dynamic FPS implementation
99,004
Immersive Crafting
Adds crafting recipes to immersive portals
9,998