소스 검색

Fixing file not found exception for FlatFile leaderboards

nossr50 13 년 전
부모
커밋
bede658d94
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/gmail/nossr50/Leaderboard.java

+ 1 - 1
src/main/java/com/gmail/nossr50/Leaderboard.java

@@ -209,7 +209,7 @@ public class Leaderboard {
      * @return the requested leaderboard information
      */
     public static String[] retrieveInfo(String skillName, int pagenumber) {
-        String theLocation = leaderboardsDirectory + skillName + ".mcmmo";
+        String theLocation = leaderboardsDirectory + skillName.toLowerCase() + ".mcmmo";
 
         try {
             FileReader file = new FileReader(theLocation);