File tree 3 files changed +8
-3
lines changed
common/src/main/java/dev/ftb/mods/ftbxmodcompat/ftbquests/recipemod_common
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.2.2]
8
+
9
+ ### Fixed
10
+ * Fixed a crash with the latest version of FTB Quests and JEI/REI support.
11
+
7
12
## [ 1.2.1]
8
13
9
14
### Fixed
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ private void rebuildWrappedQuestCache() {
41
41
if (ClientQuestFile .exists ()) {
42
42
for (ChapterGroup group : ClientQuestFile .INSTANCE .chapterGroups ) {
43
43
for (Chapter chapter : group .chapters ) {
44
- for (Quest quest : chapter .quests ) {
44
+ for (Quest quest : chapter .getQuests () ) {
45
45
if (ClientQuestFile .INSTANCE .self .canStartTasks (quest ) && !quest .rewards .isEmpty () && !quest .disableJEI .get (ClientQuestFile .INSTANCE .defaultQuestDisableJEI )) {
46
46
List <Reward > rewards = quest .rewards .stream ()
47
47
.filter (reward -> reward .getAutoClaimType () != RewardAutoClaim .INVISIBLE && reward .getIngredient () != null )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ minecraft_version=1.19.2
4
4
enabled_platforms =fabric,forge
5
5
6
6
archives_base_name =ftb-xmod-compat
7
- mod_version =1.2.1
7
+ mod_version =1.2.2
8
8
maven_group =dev.ftb.mods
9
9
curseforge_id =889915
10
10
@@ -16,7 +16,7 @@ fabric_api_version=0.76.0+1.19.2
16
16
forge_version =1.19.2-43.2.8
17
17
18
18
ftb_library_version =1902.4.1-build.236
19
- ftb_quests_version =1902.5.0 -build.245
19
+ ftb_quests_version =1902.5.3 -build.268
20
20
ftb_chunks_version =1902.4.0-build.287
21
21
ftb_ranks_version =1902.1.15-build.77
22
22
You can’t perform that action at this time.
0 commit comments