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
1 changed files with 1 additions and 1 deletions

View File

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