diff options
author | Walker Selby <git@walkerselby.com> | 2024-05-06 08:22:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 17:22:31 +0200 |
commit | 3132204c8e586c9b3fb66260032a0c867974e7e5 (patch) | |
tree | b071e1efe8e981a7cbc0addbd3a543a24dbab86d /src/main/java/at/hannibal2/skyhanni/features/gui | |
parent | 91b84552e80f2868e5688f311f407def7186d502 (diff) | |
download | skyhanni-3132204c8e586c9b3fb66260032a0c867974e7e5.tar.gz skyhanni-3132204c8e586c9b3fb66260032a0c867974e7e5.tar.bz2 skyhanni-3132204c8e586c9b3fb66260032a0c867974e7e5.zip |
Backend: Migrate and Simplify SkyBlockTime.kt from NEU -> SkyHanni (#1710)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/gui')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt index ddd823990..43a144efd 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt @@ -33,6 +33,7 @@ import at.hannibal2.skyhanni.utils.LorenzUtils.inAnyIsland import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators import at.hannibal2.skyhanni.utils.NumberUtil.percentageColor import at.hannibal2.skyhanni.utils.RenderUtils.HorizontalAlignment +import at.hannibal2.skyhanni.utils.SkyBlockTime import at.hannibal2.skyhanni.utils.StringUtils.anyMatches import at.hannibal2.skyhanni.utils.StringUtils.firstLetterUppercase import at.hannibal2.skyhanni.utils.StringUtils.matches @@ -40,7 +41,6 @@ import at.hannibal2.skyhanni.utils.StringUtils.pluralize import at.hannibal2.skyhanni.utils.TabListData import at.hannibal2.skyhanni.utils.TimeUtils.format import at.hannibal2.skyhanni.utils.TimeUtils.formatted -import io.github.moulberry.notenoughupdates.util.SkyBlockTime import java.util.function.Supplier internal var unknownLines = listOf<String>() |