File tree 3 files changed +7
-2
lines changed
fabric/src/main/java/dev/ftb/mods/ftbxmodcompat/fabric
3 files changed +7
-2
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.4]
8
+
9
+ ### Fixed
10
+ * (Fabric only) fix crash when Common Protection API is present and FTB Chunks is not
11
+
7
12
## [ 1.2.3]
8
13
9
14
### Added
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public void onInitialize() {
14
14
WaystonesCompat .init ();
15
15
}
16
16
17
- if (FTBXModCompat .isCommonProtLoaded ) {
17
+ if (FTBXModCompat .isFTBChunksLoaded && FTBXModCompat . isCommonProtLoaded ) {
18
18
FTBChunksProtectionProvider .init ();
19
19
}
20
20
}
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.3
7
+ mod_version =1.2.4
8
8
maven_group =dev.ftb.mods
9
9
curseforge_id =889915
10
10
You can’t perform that action at this time.
0 commit comments