PlayerDeathEvent

Hi,

i have a plroblem with PlayerDeathEvent not fired

my actual code :

@Subscribe
public void onPlayerDeath(PlayerDeathEvent e)
{
	e.setNewMessage(Texts.of("Test"));
}

@Subscribe
public void onPlayerJoin(PlayerJoinEvent e)
{
	e.setNewMessage(Texts.of("Test"));
}

The player death event never trigger the test message but the players join work just fine
PlayerDeathEvent is not available in the actual dev build ?

It’s not implemented yet, which means sponge isn’t firing it at any point. See:

Ok thanks for your reply