mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-19 15:48:10 +01:00
Ignore directories with /quests top, fixes #373
This commit is contained in:
parent
1bac3ed1f3
commit
ac899a7c8c
@ -1401,6 +1401,7 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener
|
|||||||
Map<String, Integer> questPoints = new HashMap<String, Integer>();
|
Map<String, Integer> questPoints = new HashMap<String, Integer>();
|
||||||
if (playerFiles != null) {
|
if (playerFiles != null) {
|
||||||
for (File f : playerFiles) {
|
for (File f : playerFiles) {
|
||||||
|
if (!f.isDirectory()) {
|
||||||
FileConfiguration data = new YamlConfiguration();
|
FileConfiguration data = new YamlConfiguration();
|
||||||
try {
|
try {
|
||||||
data.load(f);
|
data.load(f);
|
||||||
@ -1413,6 +1414,7 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener
|
|||||||
questPoints.put(name, data.getInt("quest-points"));
|
questPoints.put(name, data.getInt("quest-points"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
LinkedHashMap<String, Integer> sortedMap = (LinkedHashMap<String, Integer>) Quests.sort(questPoints);
|
LinkedHashMap<String, Integer> sortedMap = (LinkedHashMap<String, Integer>) Quests.sort(questPoints);
|
||||||
int numPrinted = 0;
|
int numPrinted = 0;
|
||||||
String msg = Lang.get("topQuestersTitle");
|
String msg = Lang.get("topQuestersTitle");
|
||||||
|
Loading…
Reference in New Issue
Block a user