CurseForge · Minecraft mod
Bobber Begone
A simple fabric client mod that removes the bobber render when hooked
Quick answer
Which Bobber Begone release should I use?
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.
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.
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.
- 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.
- 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.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 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.
1.19
2 loader builds1.18.2
2 loader builds1.18.1
2 loader builds1.18
2 loader builds1.17.1
2 loader builds1.17
2 loader builds1.16.5
2 loader builds1.15.2
2 loader builds1.15.1
2 loader builds1.15
2 loader buildsCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Bobber Begone versions and loaders
bobberbegone-1.0.0+1.16.5-1.19.x.jar
2 Jul 2022
bobberbegone-1.0.0+1.15.jar
2 Jul 2022
1.0.0
bobberbegone-1.0.0.jar
20 Jun 2022
Looking for an older file? The official CurseForge project page is in Resources.