Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 21:40:08 +01:00
22 Zeilen
603 B
Java
22 Zeilen
603 B
Java
|
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
|
||
|
}
|
||
|
}
|