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;
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);
}

View File

@ -27,7 +27,7 @@
],
"depends": {
"fabricloader": ">=0.12",
"fabricloader": ">=0.13",
"fabric": "*",
"minecraft": "1.18.x",
"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
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"

View File

@ -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