Add default particle colors to config

This commit is contained in:
Sn0wStorm
2020-11-08 00:59:52 +01:00
parent db1a425215
commit 74171f78c9
11 changed files with 584 additions and 82 deletions
+1 -1
View File
@@ -257,7 +257,7 @@ public class BCauldron {
((double) color.getBlue()) / 255.0,
1025.0);
if (particleRandom.nextFloat() > 0.4) {
if (P.use1_13 && particleRandom.nextFloat() > 0.4) {
// Two hovering pixely dust clouds, a bit offset with DustOptions to give some color and size
block.getWorld().spawnParticle(Particle.REDSTONE, particleLocation, 2, 0.15, 0.2, 0.15, new Particle.DustOptions(color, 1.5f));
}