Fix MC-103516

This commit is contained in:
FatSaw
2022-07-31 06:00:09 +03:00
parent 9d5c535d18
commit cb55572504

View File

@@ -1891,7 +1891,7 @@ public abstract class World implements IBlockAccess {
for (int i = 0; i < list.size(); ++i) {
Entity entity1 = (Entity) list.get(i);
if (!entity1.dead && entity1.i && entity1 != entity && (entity == null || entity1.x(entity))) {
if (!entity1.dead && entity1.i && entity1 != entity && (entity == null || !entity1.x(entity))) { // Reaper - Fix MC-103516
return false;
}
}