Merge branch 'frontdoor-and-banExpiry-only' of https://github.com/AtlasMediaGroup/TotalFreedomMod into frontdoor-and-banExpiry-only

This commit is contained in:
Paldiu
2021-03-06 12:12:59 -06:00
10 changed files with 12 additions and 207 deletions

View File

@ -7,7 +7,7 @@ public enum TimeUnit
HOUR(MINUTE.get() * 60L),
DAY(HOUR.get() * 24L),
WEEK(DAY.get() * 7L),
MONTH(WEEK.get() * 4L),
MONTH(DAY.get() * 30L),
YEAR(MONTH.get() * 12L);
private final long time;