diff --git a/src/main/java/me/blackvein/quests/CustomObjective.java b/src/main/java/me/blackvein/quests/CustomObjective.java index 02c48851e..1849501e1 100644 --- a/src/main/java/me/blackvein/quests/CustomObjective.java +++ b/src/main/java/me/blackvein/quests/CustomObjective.java @@ -178,7 +178,7 @@ public abstract class CustomObjective implements Listener { if (index > -1) { Map m = new HashMap(); for (int i = index; i < index + data.size(); i++) { - Entry e = currentStage.customObjectiveData.get(index); + Entry e = currentStage.customObjectiveData.get(i); m.put(e.getKey(), e.getValue()); } return m;