*/
@Override
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
if(world.isRemote) {
if(getGPSLocation(stack) != null) {
FMLCommonHandler.instance().showGuiScreen(new GuiGPSTool(getGPSLocation(stack)));
} else {
player.addChatComponentMessage(new ChatComponentTranslation(EnumChatFormatting.GREEN + "[GPS Tool] First you'll have to select a coordinate before you can alter it."));
}
}
return stack;