diff --git a/common/src/main/java/io/github/fisher2911/hmccosmetics/user/BaseUser.java b/common/src/main/java/io/github/fisher2911/hmccosmetics/user/BaseUser.java index 0a22d1f0..d4d85c10 100644 --- a/common/src/main/java/io/github/fisher2911/hmccosmetics/user/BaseUser.java +++ b/common/src/main/java/io/github/fisher2911/hmccosmetics/user/BaseUser.java @@ -181,7 +181,7 @@ public abstract class BaseUser { final boolean inViewDistance = this.isInViewDistance(location, other.getLocation(), settings.getCosmeticSettings()); final boolean shouldShow = shouldShow(other); final UUID otherUUID = other.getUniqueId(); - final boolean hasBackpack = !this.playerArmor.getArmorItem(ArmorItem.Type.BACKPACK).isEmpty(); + final boolean hasBackpack = !this.playerArmor.getItem(ArmorItem.Type.BACKPACK).isEmpty(); if (!this.viewingArmorStand.contains(otherUUID)) { if (!inViewDistance || !shouldShow || !hasBackpack) { if (this.viewingBalloon.contains(otherUUID)) {