Jump to content

[1.7.10] Trying to set java block down -> java does not flow


McJty

Recommended Posts

Hi, on the server side I'm trying to put down a lava block like this:

 

world.setBlock(x, y, z, Blocks.lava, 0, 3);

 

The 3 should ensure it is propagated to the clients and that a block update happens.

 

Nevertheless, the lava doesn't start flowing. It is simply the single lava source block. It only starts to flow as soon as I put another block next to it.

 

Any ideas what I need to do to get the lava to flow?

Link to comment
Share on other sites

Try

world.markBlockForUpdate(x, y, z)

after setting the block.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Link to comment
Share on other sites

Then try using

notifyBlocksOfNeighborChange(x, y, z, Blocks.lava)

as well.

Don't ask for support per PM! They'll get ignored! | If a post helped you, click the "Thank You" button at the top right corner of said post! |

mah twitter

This thread makes me sad because people just post copy-paste-ready code when it's obvious that the OP has little to no programming experience. This is not how learning works.

Link to comment
Share on other sites

Man, I keep reading this thread and thinking "Why coffee?"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.