dankgrinder 8.18.0 → 8.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/grinder.js +0 -10
- package/package.json +1 -1
package/lib/grinder.js
CHANGED
|
@@ -2719,7 +2719,6 @@ async function start(apiKey, apiUrl, opts = {}) {
|
|
|
2719
2719
|
if (!isThisWorker && w.channel?.id !== channelId) continue;
|
|
2720
2720
|
|
|
2721
2721
|
if (event.type === 'death') {
|
|
2722
|
-
// Update worker's lifesaver count so dashboard ♥ updates in real time
|
|
2723
2722
|
if (event.lifesaversLeft >= 0) {
|
|
2724
2723
|
const prev = w._lifesavers;
|
|
2725
2724
|
w._lifesavers = event.lifesaversLeft;
|
|
@@ -2748,16 +2747,7 @@ async function start(apiKey, apiUrl, opts = {}) {
|
|
|
2748
2747
|
}
|
|
2749
2748
|
}
|
|
2750
2749
|
});
|
|
2751
|
-
checks.push(`${rgb(52, 211, 153)}✓${c.reset} ${c.white}RawLog${c.reset}`);
|
|
2752
2750
|
}
|
|
2753
|
-
if (hasZlib) checks.push(`${rgb(52, 211, 153)}✓${c.reset} ${c.white}zlib${c.reset}`);
|
|
2754
|
-
if (WEBHOOK_URL) checks.push(`${rgb(52, 211, 153)}✓${c.reset} ${c.white}Webhook${c.reset}`);
|
|
2755
|
-
if (CLUSTER_ENABLED) {
|
|
2756
|
-
checks.push(`${rgb(52, 211, 153)}✓${c.reset} ${rgb(34, 211, 238)}Cluster${c.reset} ${c.dim}(${NODE_ID.substring(0, 12)})${c.reset}`);
|
|
2757
|
-
}
|
|
2758
|
-
checks.push(`${rgb(52, 211, 153)}✓${c.reset} ${c.white}${accounts.length} Account${accounts.length > 1 ? 's' : ''}${c.reset}`);
|
|
2759
|
-
console.log(` ${checks.join(' ')}`);
|
|
2760
|
-
console.log('');
|
|
2761
2751
|
|
|
2762
2752
|
// ── Phase 1: Login ─────────────────────────────────────────────
|
|
2763
2753
|
const parsedGapMin = Number.parseInt(String(process.env.LOGIN_GAP_MIN_MS || '50'), 10);
|