mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Merge branch 'development' into Wild1145-patch-1
This commit is contained in:
commit
14c53b7370
@ -605,12 +605,12 @@ public class FUtil
|
|||||||
|
|
||||||
public static Date getUnixDate(long unix)
|
public static Date getUnixDate(long unix)
|
||||||
{
|
{
|
||||||
return new Date(unix * 1000);
|
return new Date(unix);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static long getUnixTime()
|
public static long getUnixTime()
|
||||||
{
|
{
|
||||||
return System.currentTimeMillis() / 1000L;
|
return Instant.now().getEpochSecond();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static long getUnixTime(Date date)
|
public static long getUnixTime(Date date)
|
||||||
@ -620,7 +620,7 @@ public class FUtil
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return date.getTime() / 1000L;
|
return date.getTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getNMSVersion()
|
public static String getNMSVersion()
|
||||||
|
Loading…
Reference in New Issue
Block a user