mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-25 12:58:33 +01:00
parent
791c6ada5e
commit
d7e4389344
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ public class ItemArmor extends ArmorItem implements IModItem {
|
|||
((LivingEntity) source).addEffect(new MobEffectInstance(MobEffects.WITHER, 40));
|
||||
} else if (ItemArmor.isFullSetEquipped(entity, ModArmorMaterial.DEPTH)) {
|
||||
for (var other : entity.level().getEntitiesOfClass(LivingEntity.class, new AABB(entity.position(), Vec3.ZERO).inflate(2))) {
|
||||
if (other != entity && (!(other instanceof Player otherPlayer) || !otherPlayer.isAlliedTo(entity)))
|
||||
if (other != entity && (!(entity instanceof Player player) || !player.isAlliedTo(other)))
|
||||
other.addEffect(new MobEffectInstance(MobEffects.MOVEMENT_SLOWDOWN, 60, 255));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue