Skip to content

Commit

Permalink
Hide minimap on f1
Browse files Browse the repository at this point in the history
  • Loading branch information
UnRealDinnerbone committed Jul 26, 2024
1 parent 70193ca commit ca21df6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public void renderHud(GuiGraphics graphics, DeltaTracker tickDelta) {
currentPlayerChunkZ = cz;
}

if (mc.getDebugOverlay().showDebugScreen() || !FTBChunksClientConfig.MINIMAP_ENABLED.get() || FTBChunksClientConfig.MINIMAP_VISIBILITY.get() == 0 || !FTBChunksWorldConfig.shouldShowMinimap(mc.player)) {
if (mc.options.hideGui || mc.getDebugOverlay().showDebugScreen() || !FTBChunksClientConfig.MINIMAP_ENABLED.get() || FTBChunksClientConfig.MINIMAP_VISIBILITY.get() == 0 || !FTBChunksWorldConfig.shouldShowMinimap(mc.player)) {
return;
}

Expand Down

0 comments on commit ca21df6

Please sign in to comment.