Port to 1.20

This commit is contained in:
Jared 2023-06-11 04:08:59 +02:00
parent 5295b1ed68
commit a5ac191b4e
3 changed files with 8 additions and 8 deletions

View File

@ -26,7 +26,7 @@
"depends": { "depends": {
"fabricloader": ">=0.14", "fabricloader": ">=0.14",
"fabric": "*", "fabric": "*",
"minecraft": "1.19.3", "minecraft": "1.20",
"java": ">=17" "java": ">=17"
}, },
"suggests": { "suggests": {

View File

@ -1,5 +1,5 @@
modLoader = "javafml" #mandatory modLoader = "javafml" #mandatory
loaderVersion = "[44,)" #mandatory This is typically bumped every Minecraft version by Forge. See https://files.minecraftforge.net/ for a list of versions. loaderVersion = "[46,)" #mandatory This is typically bumped every Minecraft version by Forge. See https://files.minecraftforge.net/ for a list of versions.
license = "C0-1.0" # Review your options at https://choosealicense.com/. license = "C0-1.0" # Review your options at https://choosealicense.com/.
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional #issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
[[mods]] #mandatory [[mods]] #mandatory
@ -17,12 +17,12 @@ This is a long form description of the mod. You can write whatever you want here
[[dependencies.multiloader]] #optional [[dependencies.multiloader]] #optional
modId = "forge" #mandatory modId = "forge" #mandatory
mandatory = true #mandatory mandatory = true #mandatory
versionRange = "[44,)" #mandatory versionRange = "[46,)" #mandatory
ordering = "NONE" # The order that this dependency should load in relation to your mod, required to be either 'BEFORE' or 'AFTER' if the dependency is not mandatory ordering = "NONE" # The order that this dependency should load in relation to your mod, required to be either 'BEFORE' or 'AFTER' if the dependency is not mandatory
side = "BOTH" # Side this dependency is applied on - 'BOTH', 'CLIENT' or 'SERVER' side = "BOTH" # Side this dependency is applied on - 'BOTH', 'CLIENT' or 'SERVER'
[[dependencies.multiloader]] [[dependencies.multiloader]]
modId = "minecraft" modId = "minecraft"
mandatory = true mandatory = true
versionRange = "[1.19.3,1.20)" versionRange = "[1.20,1.21)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "BOTH"

View File

@ -3,14 +3,14 @@ version=1.0.0
group=com.example.examplemod group=com.example.examplemod
# Common # Common
minecraft_version=1.19.3 minecraft_version=1.20
# Forge # Forge
forge_version=44.0.1 forge_version=46.0.12
# Fabric # Fabric
fabric_version=0.68.1+1.19.3 fabric_version=0.83.0+1.20
fabric_loader_version=0.14.11 fabric_loader_version=0.14.21
# Mod options # Mod options
mod_name=Example Mod mod_name=Example Mod