Skip to content

Commit 8cd66de

Browse files
committed
1.1.3, closes #20
1 parent 2c07b71 commit 8cd66de

5 files changed

Lines changed: 14 additions & 7 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ body:
4242
label: Mod Version
4343
description: The version of the mod you were using
4444
options:
45+
- "1.1.3"
4546
- "1.1.2"
4647
- "1.1.1"
4748
- "1.1.0"

CHANGELOG-LATEST.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
### Fixed
22

3-
- Improve networking performance for 1.21.1.
4-
- Fixed crashes with scanning multipart entities.
3+
- Fixed crash with Lithostitched.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.3] - 2026-03-02
9+
10+
### Fixed
11+
12+
- Fixed crash with Lithostitched.
13+
814
## [1.1.2] - 2026-03-01
915

1016
### Fixed

common/src/main/java/com/evandev/fieldguide/client/search/SearchManager.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,10 @@ private static List<Object> matchByBiome(String biomeQuery, List<Object> entries
119119

120120
for (var biomeEntry : biomeRegistry.entrySet()) {
121121
if (matchLocation(biomeEntry.getKey().location(), biomeQuery, exactMatch)) {
122-
Biome biome = biomeEntry.getValue();
123-
for (MobCategory cat : MobCategory.values()) {
124-
try {
122+
try {
123+
Biome biome = biomeEntry.getValue();
124+
125+
for (MobCategory cat : MobCategory.values()) {
125126
for (var spawn : biome.getMobSettings().getMobs(cat).unwrap()) {
126127
if (ClientFieldGuideManager.getInstance().isValidEntity(spawn.type, ModConfig.get())) {
127128
if (!results.contains(spawn.type)) {
@@ -131,8 +132,8 @@ private static List<Object> matchByBiome(String biomeQuery, List<Object> entries
131132
}
132133
}
133134
}
134-
} catch (Exception ignored) {
135135
}
136+
} catch (Exception ignored) {
136137
}
137138
}
138139
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Project
2-
version=1.1.2
2+
version=1.1.3
33
group=com.evandev.fieldguide
44
java_version=17
55

0 commit comments

Comments
 (0)