This commit is contained in:
Vecna 2024-05-06 17:36:21 -04:00
parent 91422e0179
commit 62448a4b03
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ impl User {
let mut succeeded = Vec::<BridgeLine>::new();
for i in 0..bucket.len() {
// At level 0, we only have 1 bridge
if (level > 0 || i == 0) {
if level > 0 || i == 0 {
if self.connect(&bucket[i]) {
succeeded.push(bucket[i]);
} else {