From 43aa4ae5059012171372cb182c46bf95905e811e Mon Sep 17 00:00:00 2001 From: Roman / Linnea Gräf Date: Thu, 1 Sep 2022 17:15:51 +0200 Subject: Warn on invalid forge configs (and crash on 1.19 cause java is a bitch and i dont want to write a custom tweaker to load jar in jars, even tho i totally could, it would just not be very practical) (#236) * warning * Also warn on fabric * also work on forge * Fix grammar issue --- src/main/resources/META-INF/mods.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main/resources/META-INF/mods.toml (limited to 'src/main/resources/META-INF') diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 00000000..281faf65 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,14 @@ +# This mods.toml is loaded by forge 1.13-1.19 and is only here to make forge display an error message +modLoader = "javafml" +loaderVersion = "[12,)" +license = "LGPL" + +[[mods]] +modId="notenoughupdateserrordisplay" +version="99.99" +displayName="NotEnoughUpdates (1.8.9)" +description=''' +This mod description is only here to warn you about using the wrong version of Minecraft and Forge. +''' + + -- cgit