Posted November 19, 20168 yr So I have a block which is supposed to change color when right clicked with dye, this is dealt with via Actual States and the Tile Entity. It doesn't change unless I reload the world https://github.com/BeardlessBrady/Currency-Mod/blob/master/src/main/java/gunn/modcurrency/blocks/BlockVendor.java
November 19, 20168 yr So I have a block which is supposed to change color when right clicked with dye, this is dealt with via Actual States and the Tile Entity. It doesn't change unless I reload the world https://github.com/BeardlessBrady/Currency-Mod/blob/master/src/main/java/gunn/modcurrency/blocks/BlockVendor.java When the data changes call a block update. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
November 20, 20168 yr Author it also works if I place/break a block beside it. Not sure why it doesn't update on its own
November 20, 20168 yr I do, go to line 91 Look at the block in f3 and see if the state data on the right is what it is supposed to be. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
November 20, 20168 yr I've had similar problems. I do this, and it works most of the time: worldObj.markBlockRangeForRenderUpdate(pos, pos); worldObj.notifyBlockUpdate(pos, getState(), getState(), 3); worldObj.scheduleBlockUpdate(pos,this.getBlockType(),0,0); markDirty(); 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.
November 20, 20168 yr Author So after doing Dracos suggestion, now if I break any block anywhere it updates, but it wont update on its own
November 20, 20168 yr So after doing Dracos suggestion, now if I break any block anywhere it updates, but it wont update on its own Look at the block in f3 and see if the state data on the right is what it is supposed to be. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
November 20, 20168 yr Sorry, yes it changes to what I want in f3 mode Where did you implement dracos suggestion? VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
November 20, 20168 yr Author I tried on the client side in the setter method and in the block activated method in the block after setting the data, both the same effect
November 20, 20168 yr client side Why not server side? 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.
November 20, 20168 yr Author I got it working, my actual state method was written funky,thanks for trying to help!
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.