geforkt von Mirrors/Paper
Fix typo/logic error in previous commit
Dieser Commit ist enthalten in:
Ursprung
25ca3f41af
Commit
4e7ad05111
@ -2340,7 +2340,7 @@ public abstract class World implements IBlockAccess {
|
|||||||
// CraftBukkit start - Split out persistent check, don't apply it to special persistent mobs
|
// CraftBukkit start - Split out persistent check, don't apply it to special persistent mobs
|
||||||
if (entity instanceof EntityLiving) {
|
if (entity instanceof EntityLiving) {
|
||||||
EntityLiving entityliving = (EntityLiving) entity;
|
EntityLiving entityliving = (EntityLiving) entity;
|
||||||
if (!entityliving.isTypeNotPersistent() && entityliving.bU()) { // Should be isPersistent
|
if (entityliving.isTypeNotPersistent() && entityliving.bU()) { // Should be isPersistent
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren