Skip to content

Commit

Permalink
Merge pull request #312 from FTBTeam/bugfix/1.21/f1-hideminimap
Browse files Browse the repository at this point in the history
[1.21] Hide minimap on f1
  • Loading branch information
desht authored Jul 26, 2024
2 parents 70193ca + ca21df6 commit 5a7b437
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 5a7b437

Please sign in to comment.