From 946ea1937197d19bad24ea9b30d343b134481fb0 Mon Sep 17 00:00:00 2001 From: bm01 Date: Tue, 8 May 2012 06:57:41 +0200 Subject: [PATCH] Fixed bad /party fix :( --- Changelog.txt | 1 + .../java/com/gmail/nossr50/commands/party/PartyCommand.java | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 0d7d041e7..724852cab 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -20,6 +20,7 @@ Version 1.3.07 + Added config options for enabling/disabling specific double drops + Added automatic zip backup of flatfile database & config files + Added config options to enable/disable specific skills for PVP & PVE + = Fixed /party not working properly with 2 arguments = Fixed /ability not checking the right permission = Fixed rare NPE on /party command = Fixed Arrow Retrieval dropping only one arrow diff --git a/src/main/java/com/gmail/nossr50/commands/party/PartyCommand.java b/src/main/java/com/gmail/nossr50/commands/party/PartyCommand.java index 271800445..4a2ddf14f 100644 --- a/src/main/java/com/gmail/nossr50/commands/party/PartyCommand.java +++ b/src/main/java/com/gmail/nossr50/commands/party/PartyCommand.java @@ -161,11 +161,6 @@ public class PartyCommand implements CommandExecutor { case 2: if (PP.inParty()) { if (args[0].equalsIgnoreCase("password")) { - if (!partyInstance.isParty(args[1])) { - sender.sendMessage(LocaleLoader.getString("Party.InvalidName")); - return true; - } - if (isLeader) { if (!partyInstance.isPartyLocked(partyName)) { partyInstance.lockParty(partyName);