Jump to content

[1.19.2] Dynamic Block Destroy Time with state


reasure3

Recommended Posts

In BlockBehaviour.Property::strength, there is a destroyTime property.

However, I would like to have a different destroyTime depending on the property of the current BlockState.

Like this

 public float getDestroySpeed(BlockState state) {
   switch (state.getValue(MY_PROPERTY) {
     ...
   }
 }

There is a forge version of getExplosionResistance(BlockState state, BlockGetter level, BlockPos pos, Explosion explosion), but there is no getDestroySpeed().

Is it possible?

Link to comment
Share on other sites

You can override BlockBehaviour.getDestroyProgress().

 

But in some places it just calls BlockState.getDestroySpeed() which is hardwired to return the value from the block properties.

In vanilla it only does this to check for special values like 0 and -1

 

To really override all uses you would need to override the StateDefinition implementation created by the Block constructor so you can override the BlockState implementation to do your logic. Messy, but doable.

 

An alternative would be submit a PR to forge to add something similar to the explosion method.

https://docs.minecraftforge.net/en/latest/forgedev/prguidelines/

Edited by warjort

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

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.