diff --git a/Common/src/main/java/com/example/examplemod/Constants.java b/Common/src/main/java/com/example/examplemod/Constants.java index f68ceda..baf924e 100644 --- a/Common/src/main/java/com/example/examplemod/Constants.java +++ b/Common/src/main/java/com/example/examplemod/Constants.java @@ -1,11 +1,11 @@ package com.example.examplemod; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class Constants { - public static final String MOD_ID = "examplemod"; - public static final String MOD_NAME = "Example Mod"; - public static final Logger LOG = LogManager.getLogger(MOD_NAME); + public static final String MOD_ID = "multiloader"; + public static final String MOD_NAME = "Multi Loader Template"; + public static final Logger LOG = LoggerFactory.getLogger(MOD_NAME); } \ No newline at end of file diff --git a/Fabric/src/main/resources/fabric.mod.json b/Fabric/src/main/resources/fabric.mod.json index 642ecbd..b56f6c9 100644 --- a/Fabric/src/main/resources/fabric.mod.json +++ b/Fabric/src/main/resources/fabric.mod.json @@ -27,7 +27,7 @@ ], "depends": { - "fabricloader": ">=0.12", + "fabricloader": ">=0.13", "fabric": "*", "minecraft": "1.18.x", "java": ">=17" diff --git a/Forge/src/main/resources/META-INF/mods.toml b/Forge/src/main/resources/META-INF/mods.toml index d000fe9..d14022d 100644 --- a/Forge/src/main/resources/META-INF/mods.toml +++ b/Forge/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="[38,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +loaderVersion="[40,)" #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" diff --git a/gradle.properties b/gradle.properties index f2a17c8..f128f6d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,17 +3,17 @@ version=1.0.0 group=com.example.examplemod # Common -minecraft_version=1.18.1 +minecraft_version=1.18.2 common_runs_enabled=false common_client_run_name=Common Client common_server_run_name=Common Server # Forge -forge_version=39.1.2 +forge_version=40.0.1 //forge_ats_enabled=true # Fabric -fabric_version=0.46.4+1.18 +fabric_version=0.47.8+1.18.2 fabric_loader_version=0.13.3 # Mod options