mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-01 04:37:09 +00:00
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Luna <lunahatesgogle@gmail.com>
|
|
Date: Sun, 13 Mar 2022 14:38:38 -0300
|
|
Subject: [PATCH] ItemEntity - Check if items are air before calling setItem
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
|
index eb0351aa12eebcefab1d1d14641fc3c60cbbcab8..cf944848cdebbb6f04f5211e00c876329e86d9cc 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
|
@@ -425,11 +425,15 @@ public class ItemEntity extends Entity implements TraceableEntity {
|
|
|
|
CompoundTag nbttagcompound1 = nbt.getCompound("Item");
|
|
|
|
- this.setItem(ItemStack.of(nbttagcompound1));
|
|
- if (this.getItem().isEmpty()) {
|
|
+ // Scissors start
|
|
+ ItemStack item = ItemStack.of(nbttagcompound1);
|
|
+ if (item.isEmpty()) {
|
|
this.discard();
|
|
+ return;
|
|
}
|
|
|
|
+ this.setItem(item);
|
|
+ // Scissors end
|
|
}
|
|
|
|
@Override
|