Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 0441712

Browse files
committed
Added small flame particle
1 parent d1f22e5 commit 0441712

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/main/java/xyz/xenondevs/particle/ParticleEffect.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
* <li>{@link #SCULK_SOUL}</li>
118118
* <li>{@link #SHRIEK}</li>
119119
* <li>{@link #SLIME}</li>
120+
* <li>{@link #SMALL_FLAME}</li>
120121
* <li>{@link #SMOKE_LARGE}</li>
121122
* <li>{@link #SMOKE_NORMAL}</li>
122123
* <li>{@link #SNEEZE}</li>
@@ -878,6 +879,16 @@ public enum ParticleEffect {
878879
* </ul>
879880
*/
880881
SLIME(version -> version < 8 ? "NONE" : (version < 13 ? "SLIME" : "item_slime")),
882+
/**
883+
* <p>
884+
* <b>Information</b>:
885+
* <ul>
886+
* <li>Appearance: A small flame.</li>
887+
* <li>Speed value: Influences the velocity at which the particle flies off.</li>
888+
* <li>Extra: The velocity of this particle can be set. The amount has to be 0.</li>
889+
* </ul>
890+
*/
891+
SMALL_FLAME(version -> version < 17 ? "NONE" : "small_flame", DIRECTIONAL),
881892
/**
882893
* In vanilla, this particle is randomly displayed by fire, furnace
883894
* minecarts and blazes. It's also displayed when trying to place water

0 commit comments

Comments
 (0)