MISC: Reduce achievements check interval (#2650)

This commit is contained in:
catloversg
2026-04-16 08:47:29 +07:00
committed by GitHub
parent c21d1f44b2
commit 45bce6e45e
2 changed files with 3 additions and 12 deletions
+2 -2
View File
@@ -157,7 +157,7 @@ const Engine = {
messages: 150,
mechanicProcess: 5, // Process Bladeburner
contractGeneration: 3000, // Generate Coding Contracts
achievementsCounter: 60, // Check if we have new achievements
achievementsCounter: 5, // Check if we have new achievements
},
decrementAllCounters: function (numCycles = 1) {
@@ -215,7 +215,7 @@ const Engine = {
if (Engine.Counters.achievementsCounter <= 0) {
calculateAchievements();
Engine.Counters.achievementsCounter = 300;
Engine.Counters.achievementsCounter = 5;
}
// This **MUST** remain the last block in the function!