mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-25 20:25:45 +01:00
Ignore case when adding requirements, fixes #94. Bump version number
This commit is contained in:
parent
c4e1e719a3
commit
bd4fcf314d
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<groupId>me.blackvein.quests</groupId>
|
<groupId>me.blackvein.quests</groupId>
|
||||||
<artifactId>quests</artifactId>
|
<artifactId>quests</artifactId>
|
||||||
<version>3.0.0-Naomi</version>
|
<version>3.0.1</version>
|
||||||
<name>quests</name>
|
<name>quests</name>
|
||||||
<url>https://github.com/FlyingPikachu/Quests/</url>
|
<url>https://github.com/FlyingPikachu/Quests/</url>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
@ -267,7 +267,7 @@ public class RequirementsPrompt extends FixedSetPrompt {
|
|||||||
context.getForWhom().sendRawMessage(ChatColor.RED + Lang.get("listDuplicate"));
|
context.getForWhom().sendRawMessage(ChatColor.RED + Lang.get("listDuplicate"));
|
||||||
return new QuestListPrompt(isRequiredQuest);
|
return new QuestListPrompt(isRequiredQuest);
|
||||||
}
|
}
|
||||||
questNames.add(s);
|
questNames.add(quests.getQuest(s).name);
|
||||||
}
|
}
|
||||||
Collections.sort(questNames, new Comparator<String>() {
|
Collections.sort(questNames, new Comparator<String>() {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user