New update = new feature
Feature asked by @SlimeDog = make it possible to change the type of particle between ITEM_CRACK, BLOCK_CRACK, BLOCK_DUST & FALLING_DUST
Here some examples:
Here is also the configuration of this part of the plugin:
Code (YAML):
#--------------------
#Type of particle:
#-IMPORTANT: Don't put true to ItemTypeParticle and BlockTypeParticle to both, only one must be true and the other false
#-If you put both true, ITEM_CRACK will be default type particle to avoid errors ;)
#-
#-
ItemTypeParticle
: true
#-
#-
#ITEM_CRACK(Default) = (ItemTypeParticle) Will accept both item and block ItemStacks
#Example: https://imgur.com/jcGcM7Q
#-
#-
BlockTypeParticle
: false
#-
#-
#BLOCK_CRACK= (BlockTypeParticle) MUST be from Materials that have #isBlock() equal to true, otherwise you will get an ERROR
#Example: https://imgur.com/XTmRWOa
#-
#BLOCK_DUST= (BlockTypeParticle) MUST be from Materials that have #isBlock() equal to true, otherwise you will get an ERROR
#Example: https://imgur.com/RYmnZEx
#-
#FALLING_DUST= (BlockTypeParticle) MUST be from Materials that have #isBlock() equal to true, otherwise you will get an ERROR
#Example: https://imgur.com/RQmbyCZ
#-
#-Set the type of particle seen above
#-
TypeParticleName
: ITEM_CRACK
#-
#-
#--------------------
You must either choose between ItemParticleType or BlockParticleType but not both in true check what is written in the comments
--------
You must remove the config.yml or add this part in the config.yml
--------