2022-07-28 03:57:50 +00:00
|
|
|
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
|
2023-06-09 00:58:46 +00:00
|
|
|
index 3d41dbe0285f8fec8adae1e93010cf464df9b08c..7ee2c5beaaca9deb61589074f55e4004d1dd76b5 100644
|
2022-07-28 03:57:50 +00:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
|
2023-06-09 00:58:46 +00:00
|
|
|
@@ -420,11 +420,15 @@ public class ItemEntity extends Entity implements TraceableEntity {
|
2022-07-28 03:57:50 +00:00
|
|
|
|
|
|
|
CompoundTag nbttagcompound1 = nbt.getCompound("Item");
|
|
|
|
|
|
|
|
- this.setItem(ItemStack.of(nbttagcompound1));
|
2023-02-25 17:37:46 +00:00
|
|
|
- if (this.getItem().isEmpty()) {
|
2022-07-28 03:57:50 +00:00
|
|
|
+ // Scissors start
|
2023-02-25 17:37:46 +00:00
|
|
|
+ ItemStack item = ItemStack.of(nbttagcompound1);
|
|
|
|
+ if (item.isEmpty()) {
|
2022-07-28 03:57:50 +00:00
|
|
|
this.discard();
|
|
|
|
+ return;
|
|
|
|
}
|
|
|
|
|
2023-02-25 17:37:46 +00:00
|
|
|
+ this.setItem(item);
|
2022-07-28 03:57:50 +00:00
|
|
|
+ // Scissors end
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|