If I do /particle reddust ~ ~ ~ 0 0 0 10 5 The particle shows all kinda colors.
Linked issues
duplicates 1
Attachments
Comments 3
Duplicate of MC-45501 – If you have not, please use the search function in the future, to see if your bug has already been submitted. If you could not find the original report, please comment with the keywords you searched for.
Why use speed 10?
speed 0 = doesn't exist, speed is set to 1
speed 0.000000001 little color randomness: black particles
speed 1 = normal color randomness: red particles
speed 10 = large color randomness: all colors
I'm not sure, but I think the randomness works like this:
x is a value, lets say its 100
y is also a value, lets say 10
red = random( 1, x*speed )
green = random( 1, x*speed/y )
blue = random( 1, x*speed/y )