McJty Posted March 13, 2015 Posted March 13, 2015 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? Quote
SanAndreaP Posted March 13, 2015 Posted March 13, 2015 Try world.markBlockForUpdate(x, y, z) after setting the block. Quote 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.
McJty Posted March 13, 2015 Author Posted March 13, 2015 Doesn't help. The lava is not flowing: Quote
SanAndreaP Posted March 13, 2015 Posted March 13, 2015 Then try using notifyBlocksOfNeighborChange(x, y, z, Blocks.lava) as well. Quote 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.
McJty Posted March 13, 2015 Author Posted March 13, 2015 I solved it thanks to advice on irc. Apparently I need to use Blocks.flowing_java instead of Blocks.java. Quote
Draco18s Posted March 13, 2015 Posted March 13, 2015 Man, I keep reading this thread and thinking "Why coffee?" Quote 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.
Recommended Posts
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.