Skip to content

Commit

Permalink
Fix keybind translation
Browse files Browse the repository at this point in the history
  • Loading branch information
NotRyken committed Nov 26, 2024
1 parent 638c616 commit 7395d04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.1

- Fixed keybind translation

## 1.1.0

- Updated bundle handling
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public class ClientSort {
public static final String MOD_NAME = "ClientSort";
public static final ModLogger LOG = new ModLogger(MOD_NAME);
public static final KeyMapping SORT_KEY = new KeyMapping(
translationKey("key", "sort"), InputConstants.Type.MOUSE,
InputConstants.MOUSE_BUTTON_MIDDLE, translationKey("key_group"));
translationKey("key", "group.sort"), InputConstants.Type.MOUSE,
InputConstants.MOUSE_BUTTON_MIDDLE, translationKey("key", "group"));

public static boolean searchOrderUpdated = false;

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Neo/Forge version ranges: https://maven.apache.org/enforcer/enforcer-rules/versionRanges.html

# Project
mod_version=1.1.0+1.21
mod_version=1.1.1+1.21
mod_group=dev.terminalmc
mod_id=clientsort
mod_name=ClientSort
Expand Down

0 comments on commit 7395d04

Please sign in to comment.