readd removal cause for thrown eggs

This commit is contained in:
Lulu13022002
2024-12-15 23:07:15 +01:00
parent f5cd5989a4
commit ec57b99bf5
22 changed files with 96 additions and 82 deletions

View File

@@ -10,8 +10,8 @@ import org.bukkit.inventory.ItemStack;
public class CraftItem extends CraftEntity implements Item {
// Paper start
private final static int NO_AGE_TIME = (int) Short.MIN_VALUE;
private final static int NO_PICKUP_TIME = (int) Short.MAX_VALUE;
private final static int NO_AGE_TIME = Short.MIN_VALUE;
private final static int NO_PICKUP_TIME = Short.MAX_VALUE;
// Paper end
public CraftItem(CraftServer server, ItemEntity entity) {