fix autocrafting logic bug with container items and processing patterns

fix message reporting missing items having their values swapped
This commit is contained in:
PrototypeTrousers
2022-08-08 19:06:50 -03:00
parent 9fdf0345b3
commit a55dbb061c
5 changed files with 12 additions and 12 deletions
@@ -33,10 +33,10 @@ public class PacketInformPlayer extends AppEngPacket
}
}
public PacketInformPlayer( IAEItemStack extra, IAEItemStack result, InfoType type ) throws IOException
public PacketInformPlayer( IAEItemStack expected, IAEItemStack actual, InfoType type ) throws IOException
{
this.reportedItem = extra;
this.actualItem = result;
this.reportedItem = expected;
this.actualItem = actual;
this.type = type;
final ByteBuf data = Unpooled.buffer();