We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8373bf3 commit d5fb4efCopy full SHA for d5fb4ef
src/skyblock/AntiAFK.ts
@@ -12,7 +12,7 @@ export class AntiAFK {
12
private readonly scriptId = 'antiafk';
13
private readonly defaultConfig: AntiAFKConfig = {
14
enabled: true,
15
- triggerSlot: 15,
+ triggerSlot: 13,
16
};
17
18
private config: AntiAFKConfig;
@@ -147,7 +147,7 @@ export class AntiAFK {
147
private onTick(event: Events.Tick) {
148
if (this.isActive) {
149
// 10 seconds timeout
150
- if (Date.now() - this.lastTitleTime > 10000) {
+ if (Date.now() - this.lastTitleTime > 5_000) {
151
this.setActive(false);
152
this.processingActionUntil = 0;
153
}
0 commit comments