Changed party name restriction

This commit is contained in:
bm01 2012-06-09 20:32:35 +02:00
parent e9c3583fd8
commit 5d0d89e74d

View File

@ -256,8 +256,7 @@ public class PartyManager {
* @param password the password for this party, null if there was no password * @param password the password for this party, null if there was no password
*/ */
public void addToParty(Player player, PlayerProfile playerProfile, String partyName, String password) { public void addToParty(Player player, PlayerProfile playerProfile, String partyName, String password) {
//Fix for FFS partyName = partyName.replace(".", "");
partyName = partyName.replace(":", ".");
Party party = getParty(partyName); Party party = getParty(partyName);
String playerName = player.getName(); String playerName = player.getName();