Closed mcol closed 1 month ago
The relevant changes are the addition of the two ifs and the change to n = max(0, temp.LENGTH - 4) to avoid n going negative (similarly to what was already existing for versions 6, 7, 8). Fixes #225.
if
n = max(0, temp.LENGTH - 4)
n
The relevant changes are the addition of the two
if
s and the change ton = max(0, temp.LENGTH - 4)
to avoidn
going negative (similarly to what was already existing for versions 6, 7, 8). Fixes #225.