mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-25 06:04:32 +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) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue