Added methods to control dropped EXP from EntityDeathEvent, and made a subevent for setting players respawned-exp

This commit is contained in:
Dinnerbone
2011-09-21 15:40:00 +01:00
parent ef124be4d4
commit d1f1b285ae
2 changed files with 72 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
package org.bukkit.event.entity;
import java.util.List;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
/**
* Thrown whenever a {@link Player} dies
*/
public class PlayerDeathEvent extends EntityDeathEvent {
private int newExp = 0;
public PlayerDeathEvent(Player player, List<ItemStack> drops, int droppedExp, int newExp) {
super(player, drops, droppedExp);
this.newExp = newExp;
}
/**
* Gets how much EXP the Player should have at respawn.
* <p>
* This does not indicate how much EXP should be dropped, please see
* {@link #getDroppedExp()} for that.
*
* @return New EXP of the respawned player
*/
public int getNewExp() {
return newExp;
}
/**
* Sets how much EXP the Player should have at respawn.
* <p>
* This does not indicate how much EXP should be dropped, please see
* {@link #setDropedExp(int)} for that.
*
* @get exp New EXP of the respawned player
*/
public void setNewExp(int exp) {
this.newExp = exp;
}
}