Bobber Begone
No reviews yet
A simple fabric client mod that removes the bobber render when hooked
Does not follow a specific thematic focus apart from vanilla Minecraft.
Used for mods with little to no gameplay elements.
Includes quality of life improvements and small tweaks to enhance and customize gameplay.
Adds client-side tools and features to enhance the user experience.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
About
Description
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(); |
| } |
| } |
}
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers