mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 15:17:59 +01:00
Fixed hud element appearing on the pause screen
This commit is contained in:
parent
bd74a03b8b
commit
c2a959f031
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ public class UHud extends DrawableHelper {
|
|||
|
||||
public void render(InGameHud hud, MatrixStack matrices, float tickDelta) {
|
||||
|
||||
if (client.player == null || client.player.isSpectator()) {
|
||||
if (client.player == null || client.player.isSpectator() || client.options.hudHidden) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue