3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00

Fix typo/logic error in previous commit

Dieser Commit ist enthalten in:
Travis Watkins 2013-05-02 13:06:21 -05:00
Ursprung 25ca3f41af
Commit 4e7ad05111

Datei anzeigen

@ -2340,7 +2340,7 @@ public abstract class World implements IBlockAccess {
// CraftBukkit start - Split out persistent check, don't apply it to special persistent mobs
if (entity instanceof EntityLiving) {
EntityLiving entityliving = (EntityLiving) entity;
if (!entityliving.isTypeNotPersistent() && entityliving.bU()) { // Should be isPersistent
if (entityliving.isTypeNotPersistent() && entityliving.bU()) { // Should be isPersistent
continue;
}
}