From d403b5981ef564a910c443452dad7113b4b19024 Mon Sep 17 00:00:00 2001 From: Aria Date: Mon, 15 May 2023 21:34:59 -0700 Subject: [PATCH] Fix mods.toml --- gradle.properties | 2 +- src/main/resources/META-INF/mods.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 07c6e6b..0e86294 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ org.gradle.daemon=false mc_version=1.19.3 forge_version=44.1.0 -myversion=1.0.7.0515232124 +myversion=1.0.7.0515232132 parchment_version=2023.03.12 # luckperms_api_version=5.4 diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 77cdaf5..53767eb 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -6,7 +6,7 @@ # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="[45,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +loaderVersion="[44,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. license="GPLv3" @@ -52,7 +52,7 @@ This mod provides common code to all of zontreck's mods. # Does this dependency have to exist - if not, ordering below must be specified mandatory=true #mandatory # The version range of the dependency - versionRange="[45,)" #mandatory + versionRange="[44,)" #mandatory # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory ordering="NONE" # Side this dependency is applied on - BOTH, CLIENT or SERVER @@ -62,6 +62,6 @@ This mod provides common code to all of zontreck's mods. modId="minecraft" mandatory=true # This version range declares a minimum of the current minecraft version up to but not including the next major version - versionRange="[1.19.4,1.20)" + versionRange="[1.19.3,1.20)" ordering="NONE" side="BOTH"