Community listing page, reviews here may not be monitored by the author.
Bobber Begone
No reviews yet
A simple fabric client mod that removes the bobber render when hooked
Community voices
Reviews
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
Runs entirely on the client. Works on vanilla servers.
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