fix broken recipes resulting in item dupes

This commit is contained in:
PrototypeTrousers
2021-07-28 19:26:23 -03:00
parent cef6dbf0d7
commit 0b9df31d4e
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ aechannel=stable
aebuild=7 aebuild=7
aegroup=appeng aegroup=appeng
aebasename=appliedenergistics2 aebasename=appliedenergistics2
trousers=omni-fixes-v45h trousers=omni-fixes-v45i
######################################################### #########################################################
# Versions # # Versions #
@@ -245,7 +245,10 @@ public class PacketJEIRecipe extends AppEngPacket
if( out != null ) if( out != null )
{ {
out.setStackSize( recipe[x][y].getCount() ); if (!cct.useRealItems())
{
out.setStackSize( recipe[x][y].getCount() );
}
currentItem = out.createItemStack(); currentItem = out.createItemStack();
} }
} }