AuroraLS3
Member
Hi.
On Bukkit EntityDeathEvent fires when PlayerDeathEvent is fired, allowing to use this event for player deaths as well by checking if
	
	
	
		
However I got a report that says that player kills are not recorded (I'm using the listener in a way that uses the if above)
Could somebody help me out? (The javadocs are practically useless)
								On Bukkit EntityDeathEvent fires when PlayerDeathEvent is fired, allowing to use this event for player deaths as well by checking if
		Code:
	
	Entity dead = event.getEntity();
        if (dead instanceof Player) {
	Could somebody help me out? (The javadocs are practically useless)