Back to mods
Bobber Begone project artwork

CurseForge · Minecraft mod

Bobber Begone

A simple fabric client mod that removes the bobber render when hooked

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Bobber Begone release should I use?

Updated 4 years ago
Latest stable file bobberbegone-1.0.0+1.16.5-1.19.x.jar
Game version 1.17.1, 1.16.5, 1.18.2
Loader Fabric, Quilt

Bobber Begone bobberbegone-1.0.0+1.16.5-1.19.x.jar targets 1.17.1, 1.16.5, 1.18.2 with Fabric, Quilt. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Bobber Begone required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric, Quilt
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Bobber Begone bobberbegone-1.0.0+1.16.5-1.19.x.jar need?

bobberbegone-1.0.0+1.16.5-1.19.x.jar. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional mods.

Before you install it

Add Bobber Begone without breaking your instance.

Built for Bobber Begone bobberbegone-1.0.0+1.16.5-1.19.x.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use bobberbegone-1.0.0+1.16.5-1.19.x.jar. It targets 1.17.1, 1.16.5, 1.18.2 with Fabric, Quilt; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside bobberbegone-1.0.0+1.16.5-1.19.x.jar. It opens that exact file at the source.

About this project

What does Bobber Begone add?

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

}

Project description from CurseForge.

Pick your setup

Bobber Begone by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

22 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Bobber Begone versions and loaders

3 of 3 releases match

Looking for an older file? The official CurseForge project page is in Resources.