File tree Expand file tree Collapse file tree
src/main/java/org/cyclops/structuredcrafting Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ CHANGELOG-1.19.2.md
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 22
33import net .minecraft .world .item .CreativeModeTab ;
44import net .minecraft .world .item .ItemStack ;
5+ import net .minecraftforge .fml .ModList ;
56import net .minecraftforge .fml .common .Mod ;
67import net .minecraftforge .fml .event .lifecycle .FMLCommonSetupEvent ;
78import 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
You can’t perform that action at this time.
0 commit comments