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

Prevent (Entity) null to be added to the entity list.

Dieser Commit ist enthalten in:
Erik Broes 2012-01-27 19:42:04 +01:00
Ursprung 16d3b705c5
Commit 38ad0ea5fd

Datei anzeigen

@ -866,6 +866,8 @@ public class World implements IBlockAccess {
public boolean addEntity(Entity entity, SpawnReason spawnReason) { // Changed signature, added SpawnReason
// CraftBukkit end
if (entity == null) return false;
int i = MathHelper.floor(entity.locX / 16.0D);
int j = MathHelper.floor(entity.locZ / 16.0D);
boolean flag = false;