mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 19:46:42 +01:00
Fixed kirin not seeing themselves as themselves when raging
This commit is contained in:
parent
8961cc2cff
commit
79d66439a9
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class EntityReplacementRenderManager implements Disguise {
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isRageApplicable(Entity entity) {
|
private boolean isRageApplicable(Entity entity) {
|
||||||
return entity instanceof PassiveEntity || entity instanceof PlayerEntity || pools.containsKey(entity.getType());
|
return entity != MinecraftClient.getInstance().player && (entity instanceof PassiveEntity || entity instanceof PlayerEntity || pools.containsKey(entity.getType()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue