fixed.. a crash when requesting items without nbt lmao

Closes #122
This commit is contained in:
Ell 2022-03-30 22:52:45 +02:00
parent cb98ef5be1
commit f861c0bbb5
2 changed files with 3 additions and 2 deletions

View file

@ -20,7 +20,8 @@ public class PacketRequest {
public PacketRequest(BlockPos pos, ItemStack stack, int amount) {
this.pos = pos;
this.stack = stack;
this.nbtHash = stack.getTag().hashCode();
if (stack.hasTag())
this.nbtHash = stack.getTag().hashCode();
this.amount = amount;
}

View file

@ -163,7 +163,7 @@ public class ItemTerminalTileEntity extends TileEntity implements INamedContaine
stack = this.networkItems.values().stream()
.map(NetworkItem::asStack)
// don't compare with nbt equality here or the whole hashing thing is pointless
.filter(s -> ItemEquality.compareItems(s, filter) && s.getTag().hashCode() == nbtHash)
.filter(s -> ItemEquality.compareItems(s, filter) && s.hasTag() && s.getTag().hashCode() == nbtHash)
.findFirst().orElse(filter);
}
int requested = this.requestItemImpl(stack, onItemUnavailable(player, false));