Skip to content

Commit da9dc9b

Browse files
committed
Merge remote-tracking branch 'origin/master-1.19-lts' into master-1.20-lts
2 parents 70c8888 + 21a9921 commit da9dc9b

4 files changed

Lines changed: 39 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.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CHANGELOG-1.19.2.md
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

src/main/java/org/cyclops/structuredcrafting/StructuredCrafting.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import net.minecraft.world.item.CreativeModeTab;
44
import net.minecraft.world.item.ItemStack;
5+
import net.minecraftforge.fml.ModList;
56
import net.minecraftforge.fml.common.Mod;
67
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
78
import org.apache.logging.log4j.Level;
@@ -41,7 +42,9 @@ protected void loadModCompats(ModCompatLoader modCompatLoader) {
4142
super.loadModCompats(modCompatLoader);
4243

4344
// Capabilities
44-
getCapabilityConstructorRegistry().registerTile(BlockEntityStructuredCrafter.class, new WorkerStructuredCrafterTileCompat());
45+
if (ModList.get().isLoaded("commoncapabilities")) {
46+
getCapabilityConstructorRegistry().registerTile(BlockEntityStructuredCrafter.class, new WorkerStructuredCrafterTileCompat());
47+
}
4548
}
4649

4750
@Override

0 commit comments

Comments
 (0)