Skip to content

Commit 431174b

Browse files
authored
v1.1.2 changes
Removed a restriction in the program that prevented you from searching through more than 2 bags with the piece limiter
1 parent 0bdb008 commit 431174b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

sfinderRecursable.exe

0 Bytes
Binary file not shown.

sfinderRecursable.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void draw() {
3232
seedReset = allParams[2];
3333
pieceLimit = int(allParams[3]);
3434
pieceLimit = int(pieceLimit);
35-
if (pieceLimit < 0 || pieceLimit > 7) {
35+
if (pieceLimit < 0) {
3636
pieceLimit = 5;
3737
}
3838
if (seedReset.equals("false")) {

0 commit comments

Comments
 (0)