Skip to content

Commit b6eb1ad

Browse files
authored
Merge pull request #18 from FTBTeam/1.19/dev
1.19/dev
2 parents 1131282 + ba6733b commit b6eb1ad

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

Diff for: fabric/src/main/java/dev/ftb/mods/ftbxmodcompat/fabric/FTBXModCompatFabric.java

+1-1
Original file line numberDiff line numberDiff 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
}

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ minecraft_version=1.19.2
44
enabled_platforms=fabric,forge
55

66
archives_base_name=ftb-xmod-compat
7-
mod_version=1.2.3
7+
mod_version=1.2.4
88
maven_group=dev.ftb.mods
99
curseforge_id=889915
1010

0 commit comments

Comments
 (0)