mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-22 17:17:38 +01:00
*fix version info
*fix save crashes.
This commit is contained in:
parent
64208e9aed
commit
068b1cdf7f
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
||||
|
||||
<groupId>me.blackvein.quests</groupId>
|
||||
<artifactId>quests</artifactId>
|
||||
<version>1.6.2-SNAPSHOT</version>
|
||||
<version>1.6.7-SNAPSHOT</version>
|
||||
<name>quests</name>
|
||||
<url>http://dev.bukkit.org/server-mods/quests/</url>
|
||||
<packaging>jar</packaging>
|
||||
|
@ -2324,7 +2324,7 @@ public class Quests extends JavaPlugin implements ConversationAbandonedListener,
|
||||
|
||||
List<String> itemsToDeliver;
|
||||
List<Integer> itemDeliveryTargetIds;
|
||||
ArrayList<String> deliveryMessages = new ArrayList<String>();
|
||||
LinkedList<String> deliveryMessages = new LinkedList<String>();
|
||||
|
||||
if (config.contains("quests." + s + ".stages.ordered." + s2 + ".items-to-deliver")) {
|
||||
|
||||
|
@ -55,7 +55,7 @@ public class Stage {
|
||||
}
|
||||
|
||||
};
|
||||
ArrayList<String> deliverMessages = new ArrayList<String>();
|
||||
public LinkedList<String> deliverMessages = new LinkedList<String>();
|
||||
|
||||
public LinkedList<NPC> citizensToInteract = new LinkedList<NPC>(){
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user