diff options
| author | Kevin <92656833+kevinthegreat1@users.noreply.github.com> | 2024-05-23 22:12:26 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-23 22:12:26 -0400 | 
| commit | 1f6798df58af5eec4dfe954ab413c5a92d0fee63 (patch) | |
| tree | f5ea29a18d285f29397d5e2a5bbaac06194eb38e /src/main/java | |
| parent | 3c578b31af7eecc541619473c8c8c3eacb554a23 (diff) | |
| download | Skyblocker-1f6798df58af5eec4dfe954ab413c5a92d0fee63.tar.gz Skyblocker-1f6798df58af5eec4dfe954ab413c5a92d0fee63.tar.bz2 Skyblocker-1f6798df58af5eec4dfe954ab413c5a92d0fee63.zip | |
Change poch to epoch
Diffstat (limited to 'src/main/java')
| -rw-r--r-- | src/main/java/de/hysky/skyblocker/utils/SkyblockTime.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/main/java/de/hysky/skyblocker/utils/SkyblockTime.java b/src/main/java/de/hysky/skyblocker/utils/SkyblockTime.java index 5a6074e1..045ecc4e 100644 --- a/src/main/java/de/hysky/skyblocker/utils/SkyblockTime.java +++ b/src/main/java/de/hysky/skyblocker/utils/SkyblockTime.java @@ -8,7 +8,7 @@ import java.util.concurrent.atomic.AtomicInteger;  import java.util.concurrent.atomic.AtomicReference;  public class SkyblockTime { -	private static final long SKYBLOCK_POCH = 1560275700000L; +	private static final long SKYBLOCK_EPOCH = 1560275700000L;  	public static final AtomicInteger skyblockYear = new AtomicInteger(0);  	public static final AtomicReference<Season> skyblockSeason = new AtomicReference<>(Season.SPRING);  	public static final AtomicReference<Month> skyblockMonth = new AtomicReference<>(Month.EARLY_SPRING); @@ -25,7 +25,7 @@ public class SkyblockTime {  	}  	private static long getSkyblockMillis() { -		return System.currentTimeMillis() - SKYBLOCK_POCH; +		return System.currentTimeMillis() - SKYBLOCK_EPOCH;  	}  	private static int getSkyblockYear() { | 
