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

Fixed NPE when players are killed by (for example) dispensers

Dieser Commit ist enthalten in:
Dinnerbone 2011-09-21 00:50:35 +01:00
Ursprung a0216584b0
Commit e4d58faf5b

Datei anzeigen

@ -0,0 +1,22 @@
package net.minecraft.server;
public class EntityDamageSourceIndirect extends EntityDamageSource {
private Entity n;
public EntityDamageSourceIndirect(String s, Entity entity, Entity entity1) {
super(s, entity);
this.n = entity1;
}
public Entity getEntity() {
return this.n;
}
public String a(EntityHuman entityhuman) {
// CraftBukkit start
String source = (this.n == null) ? "Herobrine" : this.n.Y();
return StatisticCollector.a("death." + this.m, new Object[] { entityhuman.name, source});
// CraftBukkit end
}
}