mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-07 02:59:55 +01:00
Remove "Fetching addPacket..." spam as it isn't useful. Fixes BUKKIT-32
This commit is contained in:
parent
9c12dc0ef8
commit
e3363db0a9
1 changed files with 4 additions and 2 deletions
|
@ -279,8 +279,10 @@ public class EntityTrackerEntry {
|
||||||
|
|
||||||
private Packet b() {
|
private Packet b() {
|
||||||
if (this.tracker.dead) {
|
if (this.tracker.dead) {
|
||||||
// CraftBukkit - add some information
|
// CraftBukkit start - remove useless error spam, just return
|
||||||
System.out.println("Fetching addPacket for removed entity: " + this.tracker.getBukkitEntity().toString());
|
// System.out.println("Fetching addPacket for removed entity");
|
||||||
|
return null;
|
||||||
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.tracker instanceof EntityItem) {
|
if (this.tracker instanceof EntityItem) {
|
||||||
|
|
Loading…
Reference in a new issue