Skip to content

Commit 32cfa4e

Browse files
committed
Update AutoPickup.java
1 parent 25cea7c commit 32cfa4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/us/thezircon/play/autopickup/AutoPickup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public void run() {
114114
for (String key : customItemPatchKeys) {
115115
if (customItemPatch.containsKey(key)) {
116116
PickupObjective po = customItemPatch.get(key);
117-
if (Duration.between(Instant.now(), po.getCreatedAt()).getSeconds() < -15) {
117+
if (Duration.between(Instant.now(), po.getCreatedAt()).getSeconds() < -5) {
118118
customItemPatch.remove(key);
119119
customItemPatchKeys.remove(key);
120120
}

0 commit comments

Comments
 (0)