diff options
author | Ascynx <78341107+Ascynx@users.noreply.github.com> | 2022-09-17 08:30:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-17 08:30:37 +0200 |
commit | 844555116cf61e7062e31b0432533c985a19abc7 (patch) | |
tree | 3b567bee4e020ff03856cbd627efdda3b8bcb344 | |
parent | 53cc06e8badfc34ee5c54062ed24639fb4c88886 (diff) | |
download | NotEnoughUpdates-844555116cf61e7062e31b0432533c985a19abc7.tar.gz NotEnoughUpdates-844555116cf61e7062e31b0432533c985a19abc7.tar.bz2 NotEnoughUpdates-844555116cf61e7062e31b0432533c985a19abc7.zip |
Show own head as marker fix (#283)
Now when active (with head icons on) will always show own head as a marker
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/dungeons/DungeonMap.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/dungeons/DungeonMap.java b/src/main/java/io/github/moulberry/notenoughupdates/dungeons/DungeonMap.java index d4a728be..a4c5a60a 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/dungeons/DungeonMap.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/dungeons/DungeonMap.java @@ -726,7 +726,7 @@ public class DungeonMap { } GlStateManager.color(1, 1, 1, 1); if ((!NotEnoughUpdates.INSTANCE.config.dungeons.showOwnHeadAsMarker || - playerMarkerMapPositions.size() <= 1 || minU != 1 / 4f) && + playerMarkerMapPositions.size() < 1 || minU != 1 / 4f) && NotEnoughUpdates.INSTANCE.config.dungeonMap.dmPlayerHeads >= 1 && playerSkinMap.containsKey(entry.getKey())) { Minecraft.getMinecraft().getTextureManager().bindTexture(playerSkinMap.get(entry.getKey())); |