Parties should only be saved once per call

This commit is contained in:
bm01 2013-03-08 05:28:40 +01:00
parent c0986a1f89
commit dff03109a3

View File

@ -488,13 +488,13 @@ public final class PartyManager {
}
partiesFile.set(partyName + ".Members", memberNames);
}
try {
partiesFile.save(new File(partiesFilePath));
}
catch (Exception e) {
e.printStackTrace();
}
try {
partiesFile.save(new File(partiesFilePath));
}
catch (Exception e) {
e.printStackTrace();
}
}