2023-03: Fix end of line bug

This commit is contained in:
LordMathis 2023-12-03 21:55:12 +01:00
parent 284bae6837
commit ea12e999c1
1 changed files with 4 additions and 0 deletions

View File

@ -81,6 +81,10 @@ fn process_matrix(matrix: &Vec<Vec<Engine>>) -> u32 {
}
}
}
if is_num && found_symbol {
result += num;
}
}
return result;