Fixes for Pokemon capture
All checks were successful
Build / Build (push) Successful in 1m11s

This commit is contained in:
2025-08-08 12:45:27 +02:00
parent a5675024a4
commit e5041ec5f0
4 changed files with 30 additions and 6 deletions

View File

@@ -70,7 +70,7 @@ public class Gen7CaptureLibrary : ICaptureLibrary
}
}
}
var success = shakes >= 3;
var success = shakes >= 4;
return new CaptureResult(success, shakes, false);
}
}