MatrixEffect: Slightly reduced the chance of starting a new column.

This commit is contained in:
Fabian Schlenz 2019-05-26 00:31:10 +02:00
parent 21c0f1fdf7
commit 2e595bda17

View File

@ -348,7 +348,7 @@ class MatrixColumn {
void loop() { void loop() {
if (!running) { if (!running) {
if (random8() < 50) { if (random8() < 20) {
// Start the column again. // Start the column again.
start(); start();
} }