Skip to content

Commit 602b1c7

Browse files
committed
Increase interaction interval cap
1 parent ce00880 commit 602b1c7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.0.0-beta.21
4+
5+
- Increased interaction interval limit to 1000ms
6+
37
## 2.0.0-beta.20
48

59
- Improved button reference slot selection algorithm

common/src/main/java/dev/terminalmc/clientsort/client/config/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static class Options {
5959
// General options
6060

6161
public static final int INTERACTION_INTERVAL_MIN = 1;
62-
public static final int INTERACTION_INTERVAL_MAX = 100;
62+
public static final int INTERACTION_INTERVAL_MAX = 1000;
6363
public static final int interactionIntervalDefault = 10;
6464
public int interactionInterval = interactionIntervalDefault;
6565
public static Validator<Integer> interactionIntervalValidator = (val) ->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
template_version=5
1111

1212
# Mod Version
13-
mod_version=2.0.0-beta.20
13+
mod_version=2.0.0-beta.21
1414
# 'STABLE', 'BETA' or 'ALPHA'
1515
mod_version_type=BETA
1616

0 commit comments

Comments
 (0)