mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
Fixed NPE in World. Fixes BUKKIT-306. Thanks Evenprime!
This commit is contained in:
parent
b74a69041e
commit
86fef037e0
@ -2565,6 +2565,9 @@ public class World implements IBlockAccess {
|
||||
for (int i = 0; i < this.players.size(); ++i) {
|
||||
EntityHuman entityhuman1 = (EntityHuman) this.players.get(i);
|
||||
|
||||
// CraftBukkit - fixed NPE
|
||||
if (entityhuman1 == null || entityhuman1.dead) continue;
|
||||
|
||||
if (!entityhuman1.abilities.isInvulnerable) {
|
||||
double d5 = entityhuman1.e(d0, d1, d2);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user