Incorrectly written if/else if in ComputerThread?
Opened this issue ยท 1 comments
Minecraft: 1.14.4
CC:T: 93a9ebc
Not a bug report per se; just found something sketchy in the code.
The else if clause here can never run because if afterHardAbort
is >= ABORT_TIMEOUT * 2
then it must be >= ABORT_TIMEOUT
, so the first if clause will always run, even if afterHardAbort
is >= ABORT_TIMEOUT * 2
.