Skip to content

Commit

Permalink
Merge pull request #711 from FTBTeam/1.20.1/dev
Browse files Browse the repository at this point in the history
1.20.1/dev
  • Loading branch information
desht authored Jan 21, 2024
2 parents 36f78d4 + 3953e0a commit 728f01a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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).

## [2001.3.2]

### Fixed
* Fix NPE when opening on empty quest book

## [2001.3.1]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,9 @@ public void tick() {

if (selectedChapter == null) {
selectChapter(file.getFirstVisibleChapter(file.selfTeamData));
selectedChapter.getAutofocus().ifPresent(this::scrollTo);
if (selectedChapter != null) {
selectedChapter.getAutofocus().ifPresent(this::scrollTo);
}
}

super.tick();
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod_id=ftbquests
archives_base_name=ftb-quests
minecraft_version=1.20.1
# Build time
mod_version=2001.3.1
mod_version=2001.3.2
maven_group=dev.ftb.mods
mod_author=FTB Team
# Curse release
Expand Down

0 comments on commit 728f01a

Please sign in to comment.