Package org.bukkit.event.player
Class PlayerBedLeaveEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
org.bukkit.event.player.PlayerBedLeaveEvent
- All Implemented Interfaces:
Cancellable
This event is fired when the player is leaving a bed.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetBed()
Returns the bed block involved in this event.static HandlerList
boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancelled) Sets the cancellation state of this event.void
setSpawnLocation
(boolean setBedSpawn) Set if this event should set the new spawn location for thePlayer
.boolean
Get if this event should set the new spawn location for thePlayer
.Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
Constructor Details
-
PlayerBedLeaveEvent
-
-
Method Details
-
getBed
Returns the bed block involved in this event.- Returns:
- the bed block involved in this event
-
shouldSetSpawnLocation
public boolean shouldSetSpawnLocation()Get if this event should set the new spawn location for thePlayer
.
This does not remove any existing spawn location, only prevent it from being changed (if true).
To change aPlayer
's spawn location, usePlayer.setBedSpawnLocation(Location)
.- Returns:
- true if the spawn location will be changed
-
setSpawnLocation
public void setSpawnLocation(boolean setBedSpawn) Set if this event should set the new spawn location for thePlayer
.
This will not remove any existing spawn location, only prevent it from being changed (if true).
To change aPlayer
's spawn location, usePlayer.setBedSpawnLocation(Location)
.- Parameters:
setBedSpawn
- true to change the new spawn location
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancelled) Description copied from interface:Cancellable
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancelled
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-