diff options
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt b/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt index a1a35b9d8..f05f4bd0b 100644 --- a/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt +++ b/src/main/java/at/hannibal2/skyhanni/utils/NEUVersionCheck.kt @@ -19,12 +19,10 @@ object NEUVersionCheck { } catch (e: Throwable) { neuWarning( "NotEnoughUpdates is missing!\n" + - "SkyHanni requires the latest version of NotEnoughUpdates to work.\n" + - "You currently need NEU version 2.1.1-Alpha-19 or later.\n" + - "NEU 2.1 is NOT the latest version.\n" + - "It is ONLY in the #neu-alphas channel in the NEU discord\n" + - "Or in the #neu-updates channel in the SkyHanni discord\n" + - "Use these links to download the latest version:" + "SkyHanni requires the latest version of NotEnoughUpdates to work.\n" + + "You currently need NEU version 2.1.1-Pre-4 or later.\n" + + "NEU 2.1 is NOT the latest version.\n" + + "Use these links to download the latest version:" ) return } @@ -39,12 +37,9 @@ object NEUVersionCheck { } neuWarning( "NotEnoughUpdates is outdated!\n" + - "You currently need NEU version 2.1.1-Alpha-19 or later.\n\n" + - "NEU 2.1 is NOT the latest version.\n\n" + - "NEU 2.1.1 is NOT on the NEU GitHub.\n\n" + - "It is ONLY in the #neu-alphas channel in the NEU discord\n" + - "Or in the #neu-updates channel in the SkyHanni discord\n" + - "Use these links to download the latest version:" + "You currently need NEU version 2.1.1-Pre-4 or later.\n" + + "NEU 2.1 is NOT the latest version.\n" + + "Use these links to download the latest version:" ) } @@ -54,6 +49,7 @@ object NEUVersionCheck { Pair("Join SkyHanni Discord", "https://discord.com/invite/skyhanni-997079228510117908"), Pair("Open SkyHanni GitHub", "https://github.com/hannibal002/SkyHanni"), Pair("Join NEU Discord", "https://discord.gg/moulberry"), + Pair("Download Pre-4", "https://github.com/NotEnoughUpdates/NotEnoughUpdates/releases/tag/v2.1.1-pre4"), ) closeMinecraft() } @@ -117,4 +113,4 @@ object NEUVersionCheck { FMLCommonHandler.instance().handleExit(-1) FMLCommonHandler.instance().expectServerStopped() } -}
\ No newline at end of file +} |