Because making it upper case broke all the things.

This commit is contained in:
GJ
2012-06-06 18:02:22 -04:00
parent 0a44a74f59
commit 2f15c71412
66 changed files with 318 additions and 305 deletions

View File

@ -16,7 +16,7 @@ import java.util.Map;
import org.bukkit.entity.Player;
import com.gmail.nossr50.McMMO;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.datatypes.PlayerProfile;
import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.util.Users;
@ -31,11 +31,11 @@ public class Party {
HashMap<String, Boolean> partyLocks = new HashMap<String, Boolean>();
HashMap<String, String> partyPasswords = new HashMap<String, String>();
private static McMMO plugin;
private static mcMMO plugin;
private static volatile Party instance;
private Party() {
plugin = McMMO.p;
plugin = mcMMO.p;
pluginPath = plugin.getDataFolder().getPath();
partyPlayersFile = pluginPath + File.separator + "FlatFileStuff" + File.separator + "partyPlayers";
partyLocksFile = pluginPath + File.separator + "FlatFileStuff" + File.separator + "partyLocks";
@ -168,7 +168,7 @@ public class Party {
* @return the list of parties.
*/
public ArrayList<String> getParties() {
String location = McMMO.usersFile;
String location = mcMMO.usersFile;
ArrayList<String> parties = new ArrayList<String>();
try {