You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be interesting to hide the minimap from players, but give them access to the full map. In my case, it would be for an RP server, because you would no longer be able to peek at your minimap to see which players are hiding underground or who is going to jump on you.
I'm sure there are other reasons, but, in any case, I think this cool feature should be implemented!
Images
Mysticdrew already coded an API for that :
@Mixin(MiniMap.class)
public class MiniMapMixin
{
@Inject(method = "drawMap(Lnet/minecraft/client/gui/GuiGraphics;Z)V",
at = @At("HEAD"),
cancellable = true)
public void minimapDisable(GuiGraphics graphics, boolean preview, CallbackInfo ci) {
ci.cancel();
}
}
The text was updated successfully, but these errors were encountered:
Describe the new feature.
It would be interesting to hide the minimap from players, but give them access to the full map. In my case, it would be for an RP server, because you would no longer be able to peek at your minimap to see which players are hiding underground or who is going to jump on you.
I'm sure there are other reasons, but, in any case, I think this cool feature should be implemented!
Images
Mysticdrew already coded an API for that :
The text was updated successfully, but these errors were encountered: