We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5b44f4 + fc75a93 commit 62c3e19Copy full SHA for 62c3e19
1 file changed
crates/subspace-farmer/src/multi_farming.rs
@@ -29,7 +29,7 @@ fn get_plot_sizes(total_plot_size: u64, max_plot_size: u64) -> Vec<u64> {
29
30
let plot_sizes =
31
std::iter::repeat(max_plot_size).take((total_plot_size / max_plot_size) as usize);
32
- if total_plot_size % max_plot_size > 0 {
+ if total_plot_size % max_plot_size > max_plot_size / 2 {
33
plot_sizes
34
.chain(std::iter::once(total_plot_size % max_plot_size))
35
.collect::<Vec<_>>()
0 commit comments