SPIGOT-2737: Implement Statistic.PICKUP

This commit is contained in:
md_5 2016-10-22 13:07:22 +11:00
parent b6490dada5
commit fd8d8cf404

View File

@ -119,6 +119,9 @@ public class CraftStatistic {
if (stat == Statistic.BREAK_ITEM) {
return StatisticList.c(CraftMagicNumbers.getItem(material)); // PAIL: getBreakItemStatistic
}
if (stat == Statistic.PICKUP) {
return StatisticList.d(CraftMagicNumbers.getItem(material)); // PAIL: getPickupStatistic
}
if (stat == Statistic.DROP) {
return StatisticList.e(CraftMagicNumbers.getItem(material)); // PAIL: getDropItemStatistic
}