Update to 1.18.2

This commit is contained in:
Tyler Hancock 2022-03-01 21:26:33 -07:00
parent 33050f62fc
commit a79e8e7bc2
No known key found for this signature in database
GPG Key ID: D10D32949D03E695
4 changed files with 10 additions and 10 deletions

View File

@ -1,11 +1,11 @@
package com.example.examplemod; package com.example.examplemod;
import org.apache.logging.log4j.LogManager; import org.slf4j.Logger;
import org.apache.logging.log4j.Logger; import org.slf4j.LoggerFactory;
public class Constants { public class Constants {
public static final String MOD_ID = "examplemod"; public static final String MOD_ID = "multiloader";
public static final String MOD_NAME = "Example Mod"; public static final String MOD_NAME = "Multi Loader Template";
public static final Logger LOG = LogManager.getLogger(MOD_NAME); public static final Logger LOG = LoggerFactory.getLogger(MOD_NAME);
} }

View File

@ -27,7 +27,7 @@
], ],
"depends": { "depends": {
"fabricloader": ">=0.12", "fabricloader": ">=0.13",
"fabric": "*", "fabric": "*",
"minecraft": "1.18.x", "minecraft": "1.18.x",
"java": ">=17" "java": ">=17"

View File

@ -6,7 +6,7 @@
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version # 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. # 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. # 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" license="All rights reserved"

View File

@ -3,17 +3,17 @@ version=1.0.0
group=com.example.examplemod group=com.example.examplemod
# Common # Common
minecraft_version=1.18.1 minecraft_version=1.18.2
common_runs_enabled=false common_runs_enabled=false
common_client_run_name=Common Client common_client_run_name=Common Client
common_server_run_name=Common Server common_server_run_name=Common Server
# Forge # Forge
forge_version=39.1.2 forge_version=40.0.1
//forge_ats_enabled=true //forge_ats_enabled=true
# Fabric # Fabric
fabric_version=0.46.4+1.18 fabric_version=0.47.8+1.18.2
fabric_loader_version=0.13.3 fabric_loader_version=0.13.3
# Mod options # Mod options