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:
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
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren