Skip to content

Commit 7395d04

Browse files
committed
Fix keybind translation
1 parent 638c616 commit 7395d04

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
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+
## 1.1.1
4+
5+
- Fixed keybind translation
6+
37
## 1.1.0
48

59
- Updated bundle handling

common/src/main/java/dev/terminalmc/clientsort/ClientSort.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class ClientSort {
3131
public static final String MOD_NAME = "ClientSort";
3232
public static final ModLogger LOG = new ModLogger(MOD_NAME);
3333
public static final KeyMapping SORT_KEY = new KeyMapping(
34-
translationKey("key", "sort"), InputConstants.Type.MOUSE,
35-
InputConstants.MOUSE_BUTTON_MIDDLE, translationKey("key_group"));
34+
translationKey("key", "group.sort"), InputConstants.Type.MOUSE,
35+
InputConstants.MOUSE_BUTTON_MIDDLE, translationKey("key", "group"));
3636

3737
public static boolean searchOrderUpdated = false;
3838

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Neo/Forge version ranges: https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html
33

44
# Project
5-
mod_version=1.1.0+1.21
5+
mod_version=1.1.1+1.21
66
mod_group=dev.terminalmc
77
mod_id=clientsort
88
mod_name=ClientSort

0 commit comments

Comments
 (0)