Can't believe I missed this

This commit is contained in:
nossr50 2011-01-07 15:29:37 -08:00
parent 4092f7397b
commit 098d5942aa
2 changed files with 3 additions and 5 deletions

View File

@ -1053,11 +1053,9 @@ private static HashMap<String, Player> hidden = new HashMap<String, Player>();
if(vConfig.getInstance().isAdminToggled(player.getName())){
vConfig.getInstance().removeAdminToggled(player.getName());
}
//Make sure the user has access to the command
if(!player.canUseCommand("/p")) return EXIT_FAIL;
//If the player is already toggled for party chat, remove them
if (vConfig.getInstance().isPartyToggled(null)) {
if (vConfig.getInstance().isPartyToggled(player.getName())) {
player.sendMessage(Colors.Red + "Party Chat Toggle = off");
vConfig.getInstance().removePartyToggled(player.getName());
//Otherwise include them

View File

@ -36,8 +36,8 @@ public class vListener extends PluginListener {
public boolean onChat(Player player, String message){
if (message.startsWith("@") ||
vConfig.getInstance().isAdminToggled(player.getName()))
return vChat.adminChat(player, message);
vConfig.getInstance().isAdminToggled(player.getName()))
return vChat.adminChat(player, message);
//PartyChat
if((message.startsWith("!")) ||
vConfig.getInstance().isPartyToggled(player.getName()))