mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-07 11:05:13 +01:00
SPIGOT-2737: Implement Statistic.PICKUP
This commit is contained in:
parent
b6490dada5
commit
fd8d8cf404
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue