Port to 1.20
This commit is contained in:
parent
5295b1ed68
commit
a5ac191b4e
|
|
@ -26,7 +26,7 @@
|
|||
"depends": {
|
||||
"fabricloader": ">=0.14",
|
||||
"fabric": "*",
|
||||
"minecraft": "1.19.3",
|
||||
"minecraft": "1.20",
|
||||
"java": ">=17"
|
||||
},
|
||||
"suggests": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
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/.
|
||||
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
|
||||
[[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
|
||||
modId = "forge" #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
|
||||
side = "BOTH" # Side this dependency is applied on - 'BOTH', 'CLIENT' or 'SERVER'
|
||||
[[dependencies.multiloader]]
|
||||
modId = "minecraft"
|
||||
mandatory = true
|
||||
versionRange = "[1.19.3,1.20)"
|
||||
versionRange = "[1.20,1.21)"
|
||||
ordering = "NONE"
|
||||
side = "BOTH"
|
||||
|
|
|
|||
|
|
@ -3,14 +3,14 @@ version=1.0.0
|
|||
group=com.example.examplemod
|
||||
|
||||
# Common
|
||||
minecraft_version=1.19.3
|
||||
minecraft_version=1.20
|
||||
|
||||
# Forge
|
||||
forge_version=44.0.1
|
||||
forge_version=46.0.12
|
||||
|
||||
# Fabric
|
||||
fabric_version=0.68.1+1.19.3
|
||||
fabric_loader_version=0.14.11
|
||||
fabric_version=0.83.0+1.20
|
||||
fabric_loader_version=0.14.21
|
||||
|
||||
# Mod options
|
||||
mod_name=Example Mod
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user