Solved Weird statistic error!

Discussion in 'Plugin Development' started by TheTinySpider, Jul 3, 2014.

Thread Status:
Not open for further replies.
  1. Offline

    TheTinySpider

    I'm trying to get the amount of times the player has been killed by an another player using:
    Code:java
    1. int deaths = victim.getStatistic(Statistic.ENTITY_KILLED_BY, EntityType.PLAYER);

    Except I'm getting this error saying it's not an valid EntityType:
    Code:
    java.lang.IllegalArgumentException: The supplied EntityType does not have a corresponding statistic
    I think this is a bug?
    Does anyone know how to fix this or atleast a workaround?
     
  2. Offline

    fireblast709

    TheTinySpider Seems like there is no statistic for death by player. A possible workaround would be tracking it yourself in a Map.
     
Thread Status:
Not open for further replies.

Share This Page