Skip to content

Commit d5fb4ef

Browse files
committed
bug: correct select slot id
1 parent 8373bf3 commit d5fb4ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/skyblock/AntiAFK.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class AntiAFK {
1212
private readonly scriptId = 'antiafk';
1313
private readonly defaultConfig: AntiAFKConfig = {
1414
enabled: true,
15-
triggerSlot: 15,
15+
triggerSlot: 13,
1616
};
1717

1818
private config: AntiAFKConfig;
@@ -147,7 +147,7 @@ export class AntiAFK {
147147
private onTick(event: Events.Tick) {
148148
if (this.isActive) {
149149
// 10 seconds timeout
150-
if (Date.now() - this.lastTitleTime > 10000) {
150+
if (Date.now() - this.lastTitleTime > 5_000) {
151151
this.setActive(false);
152152
this.processingActionUntil = 0;
153153
}

0 commit comments

Comments
 (0)