Merge branch 'master' of github.com:nossr50/vminecraft-plugin

This commit is contained in:
cerevisiae 2010-12-07 22:55:10 -06:00
commit 34452a5dc9

View File

@ -4,7 +4,7 @@
// run // run
//Author: nossr50, TrapAlice, cerevisiae //Author: nossr50, TrapAlice, cerevisiae
//===================================================================== //=====================================================================
public class vMinecraftAnnouncements { public class vMinecraftAnnouncements extends vMinecraftCommands{
//===================================================================== //=====================================================================
//Function: onCommand //Function: onCommand
@ -46,6 +46,12 @@ public class vMinecraftAnnouncements {
vMinecraftChat.gmsg(player, Colors.Blue+"Time changes thanks to "+player.getColor()+player.getName()); vMinecraftChat.gmsg(player, Colors.Blue+"Time changes thanks to "+player.getColor()+player.getName());
} }
} }
if(split[0].equalsIgnoreCase("/tp")){
if (player.canUseCommand("/tp")){
if(etc.getServer().getPlayer(split[1]) != null)
vMinecraftChat.gmsg(player, player.getName() + Colors.Blue+" has teleported to " + etc.getServer().getPlayer(split[1]).getName());
}
}
} }
return true; return true;