From 706563f1b0a930a567aaafce27491f5aed4b7550 Mon Sep 17 00:00:00 2001 From: Micle Date: Sat, 14 Jan 2023 21:19:54 +0000 Subject: [PATCH] Updated to newer mc version: - Updated mc version from 1.19.2 to 1.19.3. - Updated forge version to 44.1.5. --- gradle.properties | 4 ++-- src/main/resources/META-INF/mods.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index 31be383..6e39137 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,5 +8,5 @@ name = Micle's Login Protection author = Micle buildVersion = 3.0.0 -mcVersion = 1.19.2 -forgeVersion = 43.1.47 \ No newline at end of file +mcVersion = 1.19.3 +forgeVersion = 44.1.5 \ No newline at end of file diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index f9abb42..8ffb0ec 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 = "[43,)" #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 = "All Rights Reserved" @@ -43,7 +43,7 @@ Protects players from damage while they are are joining a server or are AFK. # Does this dependency have to exist - if not, ordering below must be specified mandatory = true #mandatory # The version range of the dependency - versionRange = "[43,)" #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 @@ -53,6 +53,6 @@ Protects players from damage while they are are joining a server or are AFK. 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.2,1.20)" + versionRange = "[1.19.3,1.20)" ordering = "NONE" side = "BOTH"