Skip to content

Commit 5a14ac4

Browse files
committed
Merge remote-tracking branch 'origin/master-1.20-lts' into master-1.21-lts
2 parents 7aa7a3c + f175cf8 commit 5a14ac4

6 files changed

Lines changed: 65 additions & 1 deletion

File tree

CHANGELOG-1.19.2.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changelog for Minecraft 1.19.2
2+
All notable changes to this project will be documented in this file.
3+
4+
<a name="1.19.2-0.2.7"></a>
5+
## [1.19.2-0.2.7](/compare/1.19.2-0.2.6...1.19.2-0.2.7) - 2025-09-13 13:35:31
6+
7+
8+
### Fixed
9+
* Fix crash when CommonCapabilities is not present, Closes #45
10+
11+
<a name="1.19.2-0.2.6"></a>
12+
## [1.19.2-0.2.6](/compare/1.19.2-0.2.5...1.19.2-0.2.6) - 2023-11-27 11:21:01 +0100
13+
14+
15+
### Fixed
16+
* Fix duping with compound chests, Closes #33
17+
18+
<a name="1.19.2-0.2.5"></a>
19+
## [1.19.2-0.2.5](/compare/1.19.2-0.2.4...1.19.2-0.2.5) - 2023-02-12 05:31:17 +0100
20+
21+
22+
### Fixed
23+
* Fix input not consumed if output can not fully fit, Closes #31
24+
25+
<a name="1.19.2-0.2.4"></a>
26+
## [1.19.2-0.2.4] - 2022-08-11 19:47:32 +0200
27+
28+
29+
Update to MC 1.19.2

CHANGELOG-1.20.1.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog for Minecraft 1.20.1
2+
All notable changes to this project will be documented in this file.
3+
4+
<a name="1.20.1-0.2.7"></a>
5+
## [1.20.1-0.2.7](/compare/1.20.1-0.2.6...1.20.1-0.2.7) - 2025-09-13 13:37:56
6+
7+
8+
### Fixed
9+
* Fix crash when CommonCapabilities is not present, Closes #45
10+
11+
<a name="1.20.1-0.2.6"></a>
12+
## [1.20.1-0.2.6](/compare/1.20.1-0.2.5...1.20.1-0.2.6) - 2023-11-27 11:24:50 +0100
13+
14+
15+
### Fixed
16+
* Fix duping with compound chests, Closes #33
17+
18+
<a name="1.20.1-0.2.5"></a>
19+
## [1.20.1-0.2.5] - 2023-07-02 08:10:02 +0200
20+
21+
22+
Initial 1.20.1 release

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CHANGELOG-1.20.1.md

loader-neoforge/src/main/java/org/cyclops/structuredcrafting/StructuredCraftingNeoForge.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ protected void loadModCompats(ModCompatLoader modCompatLoader) {
4444
super.loadModCompats(modCompatLoader);
4545

4646
// Capabilities
47-
getCapabilityConstructorRegistry().registerBlockEntity(RegistryEntries.BLOCK_ENTITY_STRUCTURED_CRAFTER::value, new WorkerStructuredCrafterTileCompat());
47+
if (getModHelpers().getMinecraftHelpers().isModLoaded("commoncapabilities")) {
48+
getCapabilityConstructorRegistry().registerBlockEntity(RegistryEntries.BLOCK_ENTITY_STRUCTURED_CRAFTER::value, new WorkerStructuredCrafterTileCompat());
49+
}
4850
}
4951

5052
@Override
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
As always, don't forget to backup your world before updating!
2+
Requires CyclopsCore version 1.17.0 or higher.
3+
4+
Fixes:
5+
* Fix crash when CommonCapabilities is not present, Closes #45
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
As always, don't forget to backup your world before updating!
2+
Requires CyclopsCore version 1.18.4 or higher.
3+
4+
Fixes:
5+
* Fix crash when CommonCapabilities is not present, Closes #45

0 commit comments

Comments
 (0)