Fix unlockable sets sorting.

This commit is contained in:
RumbleBBU
2013-09-18 09:24:36 +00:00
parent 5125ef32ab
commit 0ca16e5996

View File

@@ -147,7 +147,7 @@ public class QuestUtilUnlockSets {
continue;
long distance = Integer.MAX_VALUE;
for (CardEdition in : allowedSets) {
long d = Math.abs(ex.getDate().getTime() - in.getDate().getTime());
long d = (Math.abs(ex.getDate().getTime() - in.getDate().getTime())) / 10000;
if (d < distance) {
distance = d;
}