Added bed events and methods.

This commit is contained in:
sk89q
2011-04-07 11:26:33 -07:00
parent 748447716b
commit ef5d72ec02
6 changed files with 136 additions and 0 deletions

View File

@@ -270,6 +270,21 @@ public abstract class Event implements Serializable {
* @see org.bukkit.event.player.PlayerInventoryEvent
*/
PLAYER_INVENTORY(Category.PLAYER),
/**
* Called when a player enter a bed
*
* @see org.bukkit.event.player.PlayerBedEnterEvent
*/
PLAYER_BED_ENTER(Category.PLAYER),
/**
* Called when a player leaves a bed
*
* @see org.bukkit.event.player.PlayerBedEnterEvent
*/
PLAYER_BED_LEAVE(Category.PLAYER),
/**
* BLOCK EVENTS
*/