File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/cn/qy/MomoTech/Items/Machines/BasicMachine/Machine Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,17 +83,17 @@ protected void findNextRecipe(BlockMenu inv) {
8383 }
8484 }
8585 }
86- inv .pushItem (is0 ?outCreative1 .clone ():outCreative2 .clone (), getOutputSlots ());
86+ inv .pushItem (is0 ?outCreative2 .clone ():outCreative1 .clone (), getOutputSlots ());
8787 }
8888
8989 @ NotNull
9090 @ Override
9191 public List <ItemStack > getDisplayRecipes () {
9292 List <ItemStack > it = new ArrayList <>(8 );
9393 it .add (new CustomItemStack (Material .BOOK , "&f制作原始物质α" , "&7要求:输入槽位每一行上的物品堆叠数量单调递减" ));
94- it .add (MomotechItem . creative_item .clone ());
94+ it .add (outCreative1 .clone ());
9595 it .add (new CustomItemStack (Material .BOOK , "&f制作原始物质β" , "&7要求:输入槽位每一行上的物品堆叠数量单调递增" ));
96- it .add (MomotechItem . creative_item_I .clone ());
96+ it .add (outCreative2 .clone ());
9797 return it ;
9898 }
9999}
You can’t perform that action at this time.
0 commit comments