mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 18:27:17 +01:00
Fixed hostile entities continuously targeting dead entities. Thanks Rigby!
This commit is contained in:
parent
b292a9dfbc
commit
98f05f7756
1 changed files with 1 additions and 1 deletions
|
@ -2088,7 +2088,7 @@ public class World implements IBlockAccess {
|
|||
for (int i = 0; i < this.players.size(); ++i) {
|
||||
EntityHuman entityhuman1 = (EntityHuman) this.players.get(i);
|
||||
// CraftBukkit start - fixed an NPE
|
||||
if (entityhuman1 == null) {
|
||||
if (entityhuman1 == null || entityhuman1.dead) {
|
||||
continue;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
|
Loading…
Reference in a new issue