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); partiesFile.set(partyName + ".Members", memberNames);
}
try { try {
partiesFile.save(new File(partiesFilePath)); partiesFile.save(new File(partiesFilePath));
} }
catch (Exception e) { catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
}
} }
} }