1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-28 22:55:09 +02:00

SPIGOT-2810: Fix entity statistics

This commit is contained in:
BlackHole 2016-11-20 20:10:39 +01:00
parent ac99d7d474
commit 7fc4255d1a

View file

@ -132,7 +132,7 @@ public class CraftStatistic {
}
public static net.minecraft.server.Statistic getEntityStatistic(org.bukkit.Statistic stat, EntityType entity) {
MonsterEggInfo monsteregginfo = (MonsterEggInfo) EntityTypes.eggInfo.get(entity.getName());
MonsterEggInfo monsteregginfo = (MonsterEggInfo) EntityTypes.eggInfo.get(new MinecraftKey(entity.getName()));
if (monsteregginfo != null) {
if (stat == org.bukkit.Statistic.KILL_ENTITY) {