Avoid error when using compass without any quests

This commit is contained in:
PikaMug 2020-03-28 22:17:56 -04:00
parent 81980c30ad
commit 8c9df06dbf

View File

@ -3617,6 +3617,7 @@ public class Quester {
index = 0;
}
}
if (list.size() > 0) {
final Quest quest = plugin.getQuestById(list.get(index));
compassTargetQuestId = quest.getId();
final Stage stage = getCurrentStage(quest);
@ -3627,6 +3628,9 @@ public class Quester {
.replace("<quest>", ChatColor.GOLD + quest.getName() + ChatColor.YELLOW));
}
}
} else {
getPlayer().sendMessage(ChatColor.RED + Lang.get(getPlayer(), "journalNoQuests"));
}
}
});
}