Jump to content

Recommended Posts

Posted

public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ)
    {
	if((Integer)worldIn.getBlockState(pos).getValue(AGE) == MAX_AGE){
		ItemStack harvestItem = new ItemStack(this.getCrop(),worldIn.rand.nextInt(5));
		playerIn.inventory.addItemStackToInventory(harvestItem);
	}
	worldIn.setBlockState(pos,worldIn.getBlockState(pos).withProperty(AGE,MAX_AGE-1));
        return false;
    }

 

I have tried using worldIn.isRemote for both the client and server, but still I get a random number for both the client and server. I then tried to setup a function to handle it outside of the event, and still random numbers for both client and server. So I'm at a standstill at how to get the client and server to sync up and give the right amount. Any help would be appreciated, thank you.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.