- Fix a crash when accessing tournaments in a new quest

This commit is contained in:
Agetian
2020-06-22 12:02:29 +03:00
parent 39c6de95fd
commit 1a6b51bae2

View File

@@ -296,6 +296,9 @@ public class QuestAchievements {
catch(ArrayIndexOutOfBoundsException e) {
return null;
}
catch(IndexOutOfBoundsException e) {
return null;
}
}