Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Change way material imports
Browse files Browse the repository at this point in the history
  • Loading branch information
spikespaz committed Jun 17, 2017
1 parent 6a352a1 commit fcf5d42
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/spikespaz/eamod/item/BaseAxe.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.spikespaz.eamod.item;

import net.minecraft.item.Item;
import net.minecraft.item.ItemAxe;

class BaseAxe extends ItemAxe {
BaseAxe(Item.ToolMaterial material, float attackSpeed, String unlocalizedName) {
BaseAxe(ToolMaterial material, float attackSpeed, String unlocalizedName) {
super(material, material.getDamageVsEntity(), attackSpeed);
this.setUnlocalizedName(unlocalizedName);
}
Expand Down

0 comments on commit fcf5d42

Please sign in to comment.