Skip to content

Commit f5bf703

Browse files
fixed a sped one
I think this bug exists in the old client too considering I copied all this code from the old client. So I'll have to check.
1 parent 1a1e8ec commit f5bf703

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,12 +622,14 @@ async fn main() {
622622
}
623623

624624
// This is for checking what main levels you have completed
625-
let level_index: u8 = 0;
625+
let mut level_index: u8 = 0;
626626
for level in levels_completed {
627627
let key_value: Vec<&str> = level.split(":").collect();
628628
if key_value[1] == "1" {
629629
main_levels[level_index as usize].completed = true
630630
}
631+
632+
level_index += 1;
631633
}
632634

633635
// This is for checking what online levels you have completed

0 commit comments

Comments
 (0)