From 95e3f07b69c85103cdf8fac927add99ff50591d0 Mon Sep 17 00:00:00 2001 From: Erik Broes Date: Tue, 17 Jan 2012 22:39:37 +0100 Subject: Add Player.setBedSpawnLocation(Location). Thanks md_5 --- src/main/java/org/bukkit/OfflinePlayer.java | 9 +++++++++ src/main/java/org/bukkit/entity/Player.java | 7 +++++++ src/test/java/org/bukkit/plugin/messaging/TestPlayer.java | 4 ++++ 3 files changed, 20 insertions(+) (limited to 'src') diff --git a/src/main/java/org/bukkit/OfflinePlayer.java b/src/main/java/org/bukkit/OfflinePlayer.java index a59f8424..013dc0a2 100644 --- a/src/main/java/org/bukkit/OfflinePlayer.java +++ b/src/main/java/org/bukkit/OfflinePlayer.java @@ -84,4 +84,13 @@ public interface OfflinePlayer extends ServerOperator, AnimalTamer, Configuratio * @return True if the player has played before, otherwise false */ public boolean hasPlayedBefore(); + + /** + * Gets the Location where the player will spawn at their bed, null if they + * have not slept in one or their current bed spawn is invalid. + * + * @return Bed Spawn Location if bed exists, otherwise null. + */ + public Location getBedSpawnLocation(); + } diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java index 6b35240e..514ef14e 100644 --- a/src/main/java/org/bukkit/entity/Player.java +++ b/src/main/java/org/bukkit/entity/Player.java @@ -470,6 +470,13 @@ public interface Player extends HumanEntity, CommandSender, OfflinePlayer, Plugi */ public Location getBedSpawnLocation(); + /** + * Sets the Location where the player will spawn at their bed. + * + * @param location where to set the respawn location + */ + public void setBedSpawnLocation(Location location); + /** * Determines if the Player is allowed to fly via jump key double-tap like in creative mode. * diff --git a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java index 119903af..4bef1f02 100644 --- a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java +++ b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java @@ -605,4 +605,8 @@ public class TestPlayer implements Player { public void setAllowFlight(boolean flight) { throw new UnsupportedOperationException("Not supported yet."); } + + public void setBedSpawnLocation(Location location) { + throw new UnsupportedOperationException("Not supported yet."); + } } -- cgit v1.2.3