Fix miscalculation of source file flags on the bitverse screen.

This commit is contained in:
Olivier Gagnon 2021-05-03 01:50:09 -04:00
parent 9976ed136c
commit 4f7befb639

@ -155,7 +155,7 @@ function loadBitVerse(destroyedBitNodeNum, flume=false, quick=false) {
// Update NextSourceFileFlags // Update NextSourceFileFlags
nextSourceFileFlags = SourceFileFlags.slice(); nextSourceFileFlags = SourceFileFlags.slice();
if (!flume) { if (!flume) {
if (nextSourceFileFlags[destroyedBitNodeNum] < 3 && destroyedBitNodeNum !== 12) if (nextSourceFileFlags[destroyedBitNodeNum] < 3)
++nextSourceFileFlags[destroyedBitNodeNum]; ++nextSourceFileFlags[destroyedBitNodeNum];
} }