Skip to content
This repository was archived by the owner on Mar 21, 2026. It is now read-only.

Commit 68fed42

Browse files
authored
Use ItemHandlerContainer instead of LegacyRecipeWrapper (#194)
1 parent ea9161d commit 68fed42

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

forge/src/main/java/ru/zznty/create_factory_logistics/mixin/logistics/stockKeeper/StockKeeperTransferHandlerMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import com.simibubi.create.content.logistics.stockTicker.CraftableBigItemStack;
55
import com.simibubi.create.content.logistics.stockTicker.StockKeeperRequestMenu;
66
import com.simibubi.create.content.logistics.stockTicker.StockKeeperRequestScreen;
7-
import com.simibubi.create.foundation.blockEntity.LegacyRecipeWrapper;
7+
import com.simibubi.create.foundation.blockEntity.ItemHandlerContainer;
88
import com.simibubi.create.foundation.utility.CreateLang;
99
import mezz.jei.api.gui.ingredient.IRecipeSlotView;
1010
import mezz.jei.api.gui.ingredient.IRecipeSlotsView;
@@ -66,7 +66,7 @@ public class StockKeeperTransferHandlerMixin {
6666
return null;
6767

6868
List<GenericStack> availableStacks = summary.get();
69-
Container outputDummy = new LegacyRecipeWrapper(new ItemStackHandler(9));
69+
Container outputDummy = new ItemHandlerContainer(new ItemStackHandler(9));
7070
List<Slot> craftingSlots = new ArrayList<>();
7171
for (int i = 0; i < outputDummy.getContainerSize(); i++)
7272
craftingSlots.add(new Slot(outputDummy, i, 0, 0));

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ version=0.0.0
4646

4747
## Dependencies
4848

49-
create_version_requirement = 6.0.6
50-
create_version = 6.0.6-98
49+
create_version_requirement = 6.0.7
50+
create_version = 6.0.7-159
5151
ponder_version = 1.0.59
5252
flywheel_version = 1.0.4
5353
registrate_version = MC1.21-1.3.0+62

0 commit comments

Comments
 (0)