14 lines
319 B
Java
14 lines
319 B
Java
package mods.tinker.tconstruct;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.util.EntityDamageSource;
|
|
|
|
public class PiercingEntityDamage extends EntityDamageSource
|
|
{
|
|
public PiercingEntityDamage(String str, Entity entity)
|
|
{
|
|
super(str, entity);
|
|
this.setDamageBypassesArmor();
|
|
}
|
|
}
|