Jump to content

[1.7.10] Weird onBlockActivated behavior vs metadata


JeanLucJ

Recommended Posts

Hello guys,

 

Using Forge v10.13.0.1180

I found out a weird behavior that I can't explain.

 

So, I made a custom block with metada.

I set Metadata with onBlockPlacedBy, it works fine.

 

With this code :

 

@Override
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int metadata, float a, float b, float c)
    {

	int dest = (metadata+1)%idBlock;

	if(!world.isRemote) 
	{
		//Debug		
		player.addChatMessage(new ChatComponentText("Local BlockNumber : " + world.getBlockMetadata(x, y, z)));
		player.addChatMessage(new ChatComponentText("onBlock BlockNumber : " + metadata));	
	}
}

 

world.getBlockMetadata(x, y, z) returns the correct value.

metadata (from onBlockActivated) return value that could be correct ("random" metadata from previous onBlockPlacedBy), but they are not the current block metadata value!

 

I am missing something fundamental? 5th paramater of onBlock should be the metadata of the activated block....

 

Thanks

Link to comment
Share on other sites

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.