From 8d77e844f7558b013b368e4dbf91e063447ce9c0 Mon Sep 17 00:00:00 2001 From: EvilSeph Date: Mon, 29 Oct 2012 03:47:51 -0400 Subject: [PATCH] Expose setBedSpawnLocation with force option. Adds BUKKIT-2709 --- src/main/java/org/bukkit/entity/Player.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java index 484627e7..7f667f6c 100644 --- a/src/main/java/org/bukkit/entity/Player.java +++ b/src/main/java/org/bukkit/entity/Player.java @@ -479,6 +479,14 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline */ public void setBedSpawnLocation(Location location); + /** + * Sets the Location where the player will spawn at their bed. + * + * @param location where to set the respawn location + * @param force whether to forcefully set the respawn location even if a valid bed is not present + */ + public void setBedSpawnLocation(Location location, boolean force); + /** * Determines if the Player is allowed to fly via jump key double-tap like in creative mode. *