TinkersConstruct/mods/tinker/tconstruct/PiercingEntityDamage.java
2013-03-11 00:05:11 -07:00

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();
}
}