Skip to content

Commit 8deff12

Browse files
committed
Lower timeout on captcha picking
1 parent 873f0e5 commit 8deff12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/eu/darkbot/popcorn/def/CaptchaPicker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void tickBehaviour() {
9696

9797
// Set module to work if there's any
9898
if (main.module != this && hasAnyCaptchaBox()) {
99-
maxActiveTime = System.currentTimeMillis() + 60_000; // 1 Minute max to solve
99+
maxActiveTime = System.currentTimeMillis() + 30_000; // 30sec max to solve
100100
main.setModule(this);
101101
}
102102
}

src/main/resources/plugin.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Default plugin",
33
"author": "Popcorn",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"minVersion": "1.13.17 beta 56",
66
"supportedVersion": "1.13.17 beta 75",
77
"features": [
@@ -12,6 +12,6 @@
1212
"eu.darkbot.popcorn.def.UserAgentUpdater",
1313
"eu.darkbot.popcorn.def.SampleModule"
1414
],
15-
"download": "https://github.com/darkbot-reloaded/DefaultPlugin/releases/download/v1.7.0/DefaultPlugin.jar",
15+
"download": "https://github.com/darkbot-reloaded/DefaultPlugin/releases/download/v1.7.1/DefaultPlugin.jar",
1616
"update": "https://raw.githubusercontent.com/darkbot-reloaded/DefaultPlugin/master/src/main/resources/plugin.json"
1717
}

0 commit comments

Comments
 (0)