Fixed getting oldest version instead of latest one

This commit is contained in:
Anuken
2018-03-13 14:30:46 -04:00
parent ea9b3cc7dd
commit f056edded7
2 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ public class ChangelogDialog extends FloatingDialog{
if(info.build == Version.build){
in.row();
in.add("$text.changelog.current");
}else if(info == versions.peek()){
}else if(info == versions.first()){
in.row();
in.add("$text.changelog.latest");
}