Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2101.1.35]

### Fixed
* Fixed keymap modifier checks on NeoForge for keybindings which have no modifier
* They were being matched even when a modifier key was pressed (caused issues with FTB Quests Tab & Shift-Tab behavior)

## [2101.1.34]

### Added
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.daemon=false
# Mod
mod_id=ftblibrary
readable_name=FTB Library
mod_version=2101.1.34
mod_version=2101.1.35
mod_author=FTB Team
# Maven
archives_base_name=ftb-library
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private boolean matchModifier(KeyMapping mapping) {
case CONTROL -> Screen.hasControlDown();
case SHIFT -> Screen.hasShiftDown();
case ALT -> Screen.hasAltDown();
case NONE -> true;
case NONE -> !Screen.hasAltDown() && !Screen.hasControlDown() && !Screen.hasShiftDown();
};
}

Expand Down
Loading