You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
605 B
Java

package net.brokenmoon.afloydwiremod.item;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.Item;
import net.minecraft.src.ItemStack;
import net.minecraft.src.World;
public class ToolWiring extends Item {
public int x = 0;
public int y = 0;
public int z = 0;
public String type = "unpaired";
public int slot;
public ToolWiring(int i) {
super(i);
this.maxStackSize = 1;
}
public boolean onItemUse(ItemStack itemstack, EntityPlayer entityplayer, World world, int i, int j, int k, int l, double heightPlaced) {
return false;
}
}