Added /myspawn, a command that will return players to their home with penalties.

This commit is contained in:
nossr50
2010-12-23 19:06:20 -08:00
parent f7254d3492
commit da86708f67
2 changed files with 29 additions and 0 deletions

View File

@ -96,6 +96,12 @@ public class vMinecraftListener extends PluginListener {
Warp home = null;
home = etc.getDataSource().getHome(player.getName());
player.teleportTo(home.Location);
//Makes sure the player has a custom home before telling them about /myspawn
if(etc.getServer().getSpawnLocation() != etc.getDataSource().getHome(player.getName()).Location){
player.sendMessage(Colors.DarkPurple + "Return here with /myspawn, the penalty for returning is the complete loss of inventory");
} else {
player.sendMessage(Colors.DarkPurple + "Set your own spawn with /myspawn");
}
}
vMinecraftUsers.getProfile(player).isDead(false);
vMinecraftChat.gmsg(Colors.Gray + player.getName() + " " + vMinecraftSettings.randomDeathMsg());