diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-06-18 18:05:06 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-18 10:05:06 +0200 |
commit | 4a4956e12f7a3edae22422ab83a796c8c7e2ffe5 (patch) | |
tree | 4d08d73ac3e583eebee3727d370af9cdfc8e8d5e /src/main/java/at/hannibal2/skyhanni | |
parent | 881453266e8c9db957c7a38df0d05d1b89b2627b (diff) | |
download | skyhanni-4a4956e12f7a3edae22422ab83a796c8c7e2ffe5.tar.gz skyhanni-4a4956e12f7a3edae22422ab83a796c8c7e2ffe5.tar.bz2 skyhanni-4a4956e12f7a3edae22422ab83a796c8c7e2ffe5.zip |
Maybe people will read (#239)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt b/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt index 11d921b9b..00a51aaa7 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt @@ -20,7 +20,9 @@ object NEUVersionCheck { neuWarning( "NotEnoughUpdates is missing!\n" + "SkyHanni requires the latest version of NotEnoughUpdates to work.\n" + - "You currently need NEU version 2.1.1-Alpha-15 or later.\n" + + "You currently need NEU version 2.1.1-Alpha-16.1 or later.\n" + + "NEU 2.1 is NOT the latest version.\n" + + "It is ONLY in the alphas channel in the NEU discord\n" + "Use these links to download the latest version:" ) return @@ -34,14 +36,12 @@ object NEUVersionCheck { } } catch (_: Throwable) { } - outdated() - } - - private fun outdated() { neuWarning( "NotEnoughUpdates is outdated!\n" + "SkyHanni requires the latest version of NotEnoughUpdates to work.\n" + - "You currently need NEU version 2.1.1-Alpha-15 or later.\n" + + "You currently need NEU version 2.1.1-Alpha-16.1 or later.\n" + + "NEU 2.1 is NOT the latest version.\n" + + "It is ONLY in the alphas channel in the NEU discord\n" + "Use these links to download the latest version:" ) } |