TinkersConstruct/mods/tinker/tconstruct/library/util/PiercingEntityDamage.java
2013-04-28 02:37:19 -07:00

14 lines
332 B
Java

package mods.tinker.tconstruct.library.util;
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();
}
}