More colors for shallow scripts and more steps

This commit is contained in:
2026-01-23 00:36:04 +01:00
parent 88b6f64a72
commit 1aad52eed1
5 changed files with 33 additions and 23 deletions

View File

@@ -131,7 +131,7 @@ impl Pattern {
}
pub fn set_length(&mut self, length: usize) {
let length = length.clamp(2, MAX_STEPS);
let length = length.clamp(1, MAX_STEPS);
while self.steps.len() < length {
self.steps.push(Step::default());
}