general code cleanup

This commit is contained in:
2016-07-18 00:20:40 +02:00
parent 302ef6cccb
commit c72689b68a
19 changed files with 4 additions and 62 deletions

View File

@@ -6,9 +6,6 @@ import net.minecraft.util.text.TextFormatting;
import slimeknights.tconstruct.library.traits.AbstractTrait;
import slimeknights.tconstruct.library.utils.ToolHelper;
/**
* Created by Robert on 30.06.2016.
*/
public class TraitHeroic extends AbstractTrait {
public TraitHeroic() {
@@ -24,11 +21,4 @@ public class TraitHeroic extends AbstractTrait {
return super.damage(tool, player, target, damage, calc, isCritical);
} else return super.damage(tool, player, target, damage, newDamage, isCritical);
}
@Override
public void onHit(ItemStack tool, EntityLivingBase player, EntityLivingBase target, float damage, boolean isCritical) {
System.out.println("Damage: " + damage);
}
}