File tree 3 files changed +8
-3
lines changed
src/main/java/com/mattsmeets/macrokey/handler
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
| Version | Released at |
2
2
| :-----: | :---------: |
3
3
| v2.0.0 | 04/11/2018 |
4
- | v2.0.1 | 29/12/2018 |
4
+ | v2.0.1 | 29/12/2018 |
5
5
| v2.0.2 | 08/12/2019 |
6
+ | v2.0.3 | 08/12/2019 |
6
7
7
8
Changelog
8
9
=======
9
10
11
+ v2.0.3
12
+ -----
13
+ - [ BUG] Required to press a button twice when you press over a tick (\# 51)
14
+
10
15
v2.0.2
11
16
-----
12
17
- [ BUG] Required to press a button twice when you press over a tick (\# 51)
Original file line number Diff line number Diff line change 1
- mod_version =2.0.2
1
+ mod_version =2.0.3
2
2
mod_name =MacroKey Keybinding
3
3
mod_group =com.mattsmeets.macrokey
4
4
mc_version =1.12
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public void onKeyEvent(MacroActivationEvent event) {
36
36
if (event .getMacroState ().isKeyDown ()) {
37
37
this .macrosToRun .addAll (event .getMacros ());
38
38
} else {
39
- this .macrosToRun .removeIf (macro -> event .getMacros ().contains (macro ) && ! macro .willRepeat ());
39
+ this .macrosToRun .removeIf (macro -> event .getMacros ().contains (macro ) && macro .willRepeat ());
40
40
}
41
41
}
42
42
You can’t perform that action at this time.
0 commit comments