File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
fabric/src/main/java/dev/ftb/mods/ftbxmodcompat/fabric Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.2.4]
8+
9+ ### Fixed
10+ * (Fabric only) fix crash when Common Protection API is present and FTB Chunks is not
11+
712## [ 1.2.3]
813
914### Added
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public void onInitialize() {
1414 WaystonesCompat .init ();
1515 }
1616
17- if (FTBXModCompat .isCommonProtLoaded ) {
17+ if (FTBXModCompat .isFTBChunksLoaded && FTBXModCompat . isCommonProtLoaded ) {
1818 FTBChunksProtectionProvider .init ();
1919 }
2020 }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ minecraft_version=1.19.2
44enabled_platforms =fabric,forge
55
66archives_base_name =ftb-xmod-compat
7- mod_version =1.2.3
7+ mod_version =1.2.4
88maven_group =dev.ftb.mods
99curseforge_id =889915
1010
You can’t perform that action at this time.
0 commit comments