fix out of order date sort in js

This commit is contained in:
RandomityGuy 2023-12-03 21:40:05 +05:30
parent 7f87db5757
commit 1e5227b4fa

View file

@ -41,7 +41,12 @@ class Mission {
public var game:String;
public var hasEgg:Bool;
public var isCustom:Bool;
#if hl
public var addedAt:Int64;
#end
#if js
public var addedAt:Int;
#end
var next:Mission;