blob: ab3ab4d788589994a8093fb054f3ee35f54f0152 [file] [log] [blame] [raw]
package com.legacy.aether.items.util;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import com.legacy.aether.Aether;
import com.legacy.aether.player.perks.AetherRankings;
public class ItemDeveloperStick extends Item {
public ItemDeveloperStick() {
this.setFull3D();
this.setCreativeTab(null);
}
@Override
public boolean itemInteractionForEntity(ItemStack stack, EntityPlayer playerIn, EntityLivingBase target) {
ItemStack heldItem = playerIn.getHeldItem();
if (AetherRankings.isRankedPlayer(playerIn.getUniqueID())) {
playerIn.mountEntity(target);
return true;
} else if (playerIn.getUniqueID().toString().equals("cf51ef47-04a8-439a-aa41-47d871b0b837")) {
Aether.proxy.sendMessage(playerIn, "YOu a cheeto or somethin'?");
--heldItem.stackSize;
return false;
} else {
Aether.proxy.sendMessage(playerIn, "You aren't skilled enough to use this item!");
--heldItem.stackSize;
return false;
}
}
}