28 lines
910 B
Java
28 lines
910 B
Java
package net.minecraftforge.event.entity.living;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.entity.item.EntityItem;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraftforge.event.Cancelable;
|
|
|
|
@Cancelable
|
|
public class LivingDropsEvent extends LivingEvent
|
|
{
|
|
public final DamageSource source;
|
|
public final ArrayList<EntityItem> drops;
|
|
public final int lootingLevel;
|
|
public final boolean recentlyHit;
|
|
public final int specialDropValue;
|
|
|
|
public LivingDropsEvent(EntityLivingBase entity, DamageSource source, ArrayList<EntityItem> drops, int lootingLevel, boolean recentlyHit, int specialDropValue)
|
|
{
|
|
super(entity);
|
|
this.source = source;
|
|
this.drops = drops;
|
|
this.lootingLevel = lootingLevel;
|
|
this.recentlyHit = recentlyHit;
|
|
this.specialDropValue = specialDropValue;
|
|
}
|
|
}
|