Problems with block tick updates

Started by Gamemaster2022 on

Topic category: Help with modding (Java Edition)

Last seen on 16:16, 15. Sep 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Problems with block tick updates

Hello. I've got a question. In my mod I've made drill item that mines block on right click and also play sound. Everything works good. BUT. Blocks around mined block by this item won't update (that means grass will float, gravel/sand won't fall, etc.). I can't figure out how to fix it. So if you know solution, I would be happy to hear it. There is procedure that runs RightClickOnBlock: https://imgur.com/a/CcBW5Z3

Thanks for help

Last seen on 04:23, 11. Aug 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
The update block ia on the…
Sat, 02/26/2022 - 22:49

The update block ia on the block that you broke 

So Its updating nothing you can change what block its gonna get updated like

Theres an xyz right so. X Y+4 Z this will make it so that 4 Blocks above the block you broke get updated

Last seen on 16:16, 15. Sep 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hello. Thanks for reply but…
Sun, 02/27/2022 - 09:20

Hello. Thanks for reply but I am afraid it still don't work. Here is updated procedure: https://imgur.com/gSj48e9

Last seen on 04:23, 11. Aug 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hey i didnt say that was the…
Sun, 02/27/2022 - 09:33

Hey i didnt say that was the answer 

You have to do it for all the sides so x+1 x-1 y+1 y-1 z+1 z-1 all those has to be on different procedures so all block around it Will get updated

 

 

Last seen on 16:16, 15. Sep 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't know if I understood…
Sun, 02/27/2022 - 10:23

I don't know if I understood correctly but I tried this: https://imgur.com/a/MHmgnQT

It has some effect but it apply after breaking another block

Last seen on 04:23, 11. Aug 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hmm well i don't really know…
Sun, 02/27/2022 - 10:32

Hmm well i don't really know why that happens 

But wait why not just make a pickaxe and when you break a block it makes the sound and activates the cooldown maybe using a global trigger

Last seen on 16:16, 15. Sep 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't want the pickaxe…
Sun, 02/27/2022 - 10:37

I don't want the pickaxe mining animation because my drill has its own 3D model. And mining animation with it looks... well quite weird. Maybe disabling this animation would do the trick but idk how would I be even able to do it

Last seen on 04:23, 11. Aug 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Maybe make it so fast that…
Sun, 02/27/2022 - 10:41

Maybe make it so fast that you cant see the animation

Last seen on 16:16, 15. Sep 2023
Joined Apr 2021
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Hmm... Haste 255 makes…
Sun, 02/27/2022 - 11:11

Hmm... Haste 255 makes mining animation completely disappear. I will try this. Anyway, thanks for help.