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 26d797d commit df137dfCopy full SHA for df137df
1 file changed
src/main/java/dev/isxander/controlify/gui/screen/BindConsumerScreen.java
@@ -97,7 +97,7 @@ public void tick() {
97
List<Input> pressedBindCopy = currentInputs.stream().toList();
98
// Input validation
99
// This is done because sometimes it's possible to input a button twice.
100
- for (Input input : currentInputs) {
+ for (Input input : pressedBinds) {
101
if (pressedBindCopy.stream().noneMatch(storedInput -> storedInput.getRelevantInputs().containsAll(input.getRelevantInputs()))) {
102
currentInputs.add(input);
103
}
0 commit comments