Updated Nos's Heal and Suicide functions to fit with the new way command functions return.

This commit is contained in:
cerevisiae 2010-11-30 01:40:31 -06:00
parent 6848a1d705
commit affbc28f32

View File

@ -45,18 +45,18 @@ public class vminecraftCommands{
cl.register("/modify", "modifySplit"); cl.register("/modify", "modifySplit");
cl.registerAlias("/playerlist", "/who"); cl.registerAlias("/playerlist", "/who");
cl.registerAlias("/suicide", "/wrists"); cl.registerAlias("/wrists", "/suicide");
} }
//Heal //Heal
public static boolean heal(Player player, String[] args) public static int heal(Player player, String[] args)
{ {
if(vminecraftSettings.getInstance().cmdHeal) if(vminecraftSettings.getInstance().cmdHeal())
{ {
if (args[1] == null){ if (args[1] == null){
if (player.getHealth() < 20){ if (player.getHealth() < 20){
vminecraftChat.gmsg("Your health is restored"); vminecraftChat.gmsg("Your health is restored");
return true; return EXIT_SUCCESS;
} }
else if (args[1] != null){ else if (args[1] != null){
Player playerTarget = etc.getServer().matchPlayer(args[1]); Player playerTarget = etc.getServer().matchPlayer(args[1]);
@ -64,27 +64,27 @@ public class vminecraftCommands{
playerTarget.setHealth(20); playerTarget.setHealth(20);
vminecraftChat.gmsg(Colors.Blue + "You have healed " + playerTarget.getColor() + playerTarget.getName()); vminecraftChat.gmsg(Colors.Blue + "You have healed " + playerTarget.getColor() + playerTarget.getName());
vminecraftChat.gmsg(Colors.Blue + "You have been healed by " + player.getColor() + player.getName()); vminecraftChat.gmsg(Colors.Blue + "You have been healed by " + player.getColor() + player.getName());
return true; return EXIT_SUCCESS;
} }
else if (playerTarget == null){ else if (playerTarget == null){
vminecraftChat.gmsg(Colors.Rose + "Couldn't find that player"); vminecraftChat.gmsg(Colors.Rose + "Couldn't find that player");
return false; return EXIT_FAIL;
} }
} }
} }
} }
return false; return EXIT_FAIL;
} }
//Suicide //Suicide
public static boolean suicide(Player player, String[] args) public static int suicide(Player player, String[] args)
{ {
if(vminecraftSettings.getInstance().cmdSuicide) if(vminecraftSettings.getInstance().cmdSuicide())
{ {
player.setHealth(0); player.setHealth(0);
return true; return EXIT_SUCCESS;
} }
return false; return EXIT_FAIL;
} }
//===================================================================== //=====================================================================
//Function: teleport (/tp) //Function: teleport (/tp)