mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
fixed a bug where completing a non-repeatable bitnode thats already max level would display level 4 on the bitverse and color it like level 1.
This commit is contained in:
parent
04bc2bebdd
commit
ae4b8228f7
@ -234,6 +234,9 @@ export let CONSTANTS: IMap<any> = {
|
|||||||
Factions
|
Factions
|
||||||
* Augmentations offered by a Faction but already bought are in a separate list at the bottom of the page.
|
* Augmentations offered by a Faction but already bought are in a separate list at the bottom of the page.
|
||||||
|
|
||||||
|
Bug fixed
|
||||||
|
* Fixed a bug where completing a maxed non-repeatable BitNode would make its color on the BitVerse like level 1.
|
||||||
|
|
||||||
Misc.
|
Misc.
|
||||||
* Minor spacing in stats tables.
|
* Minor spacing in stats tables.
|
||||||
`
|
`
|
||||||
|
@ -151,7 +151,8 @@ function loadBitVerse(destroyedBitNodeNum, flume=false) {
|
|||||||
// Update NextSourceFileFlags
|
// Update NextSourceFileFlags
|
||||||
nextSourceFileFlags = SourceFileFlags.slice();
|
nextSourceFileFlags = SourceFileFlags.slice();
|
||||||
if (!flume) {
|
if (!flume) {
|
||||||
++nextSourceFileFlags[destroyedBitNodeNum];
|
if (nextSourceFileFlags[destroyedBitNodeNum] < 3 && destroyedBitNodeNum !== 12)
|
||||||
|
++nextSourceFileFlags[destroyedBitNodeNum];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the Bit Verse
|
// Create the Bit Verse
|
||||||
|
Loading…
Reference in New Issue
Block a user