Merge pull request #197 from thatsIch/wrench
Added harvest level of wrenches and network tools to 'wrench'
This commit is contained in:
commit
dcef01a4f1
2 changed files with 8 additions and 4 deletions
|
@ -38,8 +38,10 @@ public class ToolNetworkTool extends AEBaseItem implements IGuiItem, IAEWrench,
|
||||||
|
|
||||||
public ToolNetworkTool() {
|
public ToolNetworkTool() {
|
||||||
super( ToolNetworkTool.class, null );
|
super( ToolNetworkTool.class, null );
|
||||||
setFeature( EnumSet.of( AEFeature.NetworkTool ) );
|
|
||||||
setMaxStackSize( 1 );
|
this.setFeature( EnumSet.of( AEFeature.NetworkTool ) );
|
||||||
|
this.setMaxStackSize( 1 );
|
||||||
|
this.setHarvestLevel( "wrench", 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -21,8 +21,10 @@ public class ToolQuartzWrench extends AEBaseItem implements IAEWrench, IToolWren
|
||||||
|
|
||||||
public ToolQuartzWrench(AEFeature type) {
|
public ToolQuartzWrench(AEFeature type) {
|
||||||
super( ToolQuartzWrench.class, type.name() );
|
super( ToolQuartzWrench.class, type.name() );
|
||||||
setFeature( EnumSet.of( type, AEFeature.QuartzWrench ) );
|
|
||||||
setMaxStackSize( 1 );
|
this.setFeature( EnumSet.of( type, AEFeature.QuartzWrench ) );
|
||||||
|
this.setMaxStackSize( 1 );
|
||||||
|
this.setHarvestLevel( "wrench", 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue