Auto format
This commit is contained in:
parent
aceeb7a037
commit
e16c3eba02
55 changed files with 128 additions and 182 deletions
|
@ -1,7 +1,5 @@
|
|||
package techreborn.utils;
|
||||
|
||||
import ic2.api.item.IC2Items;
|
||||
//import ic2.core.item.tool.ItemToolWrench;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.EnumActionResult;
|
||||
|
@ -10,6 +8,8 @@ import net.minecraft.util.EnumHand;
|
|||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
//import ic2.core.item.tool.ItemToolWrench;
|
||||
|
||||
//TODO IC2
|
||||
public class IC2WrenchHelper {
|
||||
|
||||
|
@ -17,18 +17,18 @@ public class IC2WrenchHelper {
|
|||
|
||||
public static EnumActionResult onItemUseFirst(ItemStack stack, EntityPlayer player, World world, BlockPos pos,
|
||||
EnumFacing side, float hitX, float hitY, float hitZ, EnumHand hand) {
|
||||
// if (wrench == null) {
|
||||
// wrench = (ItemToolWrench) IC2Items.getItem("wrench").getItem();
|
||||
// }
|
||||
// return wrench.onItemUseFirst(stack, player, world, pos, side, hitX, hitY, hitZ, hand);
|
||||
// if (wrench == null) {
|
||||
// wrench = (ItemToolWrench) IC2Items.getItem("wrench").getItem();
|
||||
// }
|
||||
// return wrench.onItemUseFirst(stack, player, world, pos, side, hitX, hitY, hitZ, hand);
|
||||
return EnumActionResult.FAIL;
|
||||
}
|
||||
|
||||
public static EnumActionResult onItemUse(ItemStack stack, EntityPlayer playerIn, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
|
||||
// if (wrench == null) {
|
||||
// wrench = (ItemToolWrench) IC2Items.getItem("wrench").getItem();
|
||||
// }
|
||||
// return wrench.onItemUse(stack, playerIn, worldIn, pos, hand, facing, hitX, hitY, hitZ);
|
||||
// if (wrench == null) {
|
||||
// wrench = (ItemToolWrench) IC2Items.getItem("wrench").getItem();
|
||||
// }
|
||||
// return wrench.onItemUse(stack, playerIn, worldIn, pos, hand, facing, hitX, hitY, hitZ);
|
||||
return EnumActionResult.FAIL;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -79,7 +79,9 @@ public class OreDictUtils {
|
|||
return isOre(new ItemStack(item), oreName);
|
||||
}
|
||||
|
||||
public static boolean isOre(@Nonnull ItemStack stack, String oreName) {
|
||||
public static boolean isOre(
|
||||
@Nonnull
|
||||
ItemStack stack, String oreName) {
|
||||
if (stack != ItemStack.EMPTY && !stack.isEmpty() && oreName != null) {
|
||||
int id = OreDictionary.getOreID(oreName);
|
||||
int[] ids = OreDictionary.getOreIDs(stack);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue