Added toString on CollatedDrops

This commit is contained in:
Auxilor
2020-12-21 16:43:28 +00:00
parent b7b3bbc85d
commit 588fe30d2b

View File

@@ -102,5 +102,14 @@ public class FastCollatedDropQueue extends InternalDropQueue {
this.xp += xp;
return this;
}
@Override
public String toString() {
return "CollatedDrops{" +
"drops=" + drops +
", location=" + location +
", xp=" + xp +
'}';
}
}
}