mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 09:42:53 +02:00
Most console.log have been changed to console.warn or removed if they were debug
This commit is contained in:
@@ -2063,7 +2063,7 @@ function installAugmentations(cbScript=null) {
|
||||
for (var i = 0; i < Player.queuedAugmentations.length; ++i) {
|
||||
var aug = Augmentations[Player.queuedAugmentations[i].name];
|
||||
if (aug == null) {
|
||||
console.log("ERROR. Invalid augmentation");
|
||||
console.error(`Invalid augmentation: ${Player.queuedAugmentations[i].name}`);
|
||||
continue;
|
||||
}
|
||||
applyAugmentation(Player.queuedAugmentations[i]);
|
||||
|
||||
Reference in New Issue
Block a user