From 3025125c5dcc6181a873bd1062fde5d239d2aba5 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 6 Aug 2019 21:21:54 +0800 Subject: 2x2 crafting --- src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java') diff --git a/src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java b/src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java index 802e1b79a..77ca3e290 100644 --- a/src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java +++ b/src/main/java/me/shedaniel/rei/server/InputSlotCrafter.java @@ -32,11 +32,11 @@ public class InputSlotCrafter { this.craftingContainer = craftingContainer_1; } - public static void start(CraftingContainer craftingContainer_1, ServerPlayerEntity player, Map> map, boolean shifting) { - new InputSlotCrafter(craftingContainer_1).fillInputSlots(player, map, shifting); + public static void start(CraftingContainer craftingContainer_1, ServerPlayerEntity player, Map> map, boolean hasShift) { + new InputSlotCrafter(craftingContainer_1).fillInputSlots(player, map, hasShift); } - private void fillInputSlots(ServerPlayerEntity player, Map> map, boolean boolean_1) { + private void fillInputSlots(ServerPlayerEntity player, Map> map, boolean hasShift) { this.inventory = player.inventory; if (this.canReturnInputs() || player.isCreative()) { // Return the already placed items on the grid -- cgit