Skip to content

Commit

Permalink
Minecraft 1.16.5 compatibility upgrade (4.6.3)
Browse files Browse the repository at this point in the history
* use forge version 36.0.15
* use mapping snapshot '20201028-1.16.3' (1.16.3 version is compatible)
  • Loading branch information
zsawyer committed Feb 8, 2021
1 parent 5476758 commit f7198db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mod/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'idea'
apply plugin: 'maven-publish'

ext.modversion = "4.6.2"
ext.mcversion = "1.16.4"
ext.forgeversion = "35.1.4"
ext.modversion = "4.6.3"
ext.mcversion = "1.16.5"
ext.forgeversion = "36.0.15"

version = mcversion + "-" + modversion
group = "zsawyer.mods.mumblelink.MumbleLink"
Expand Down
6 changes: 3 additions & 3 deletions mod/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[35,)" #mandatory
loaderVersion="[36,)" #mandatory
# 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="GNU LGPL v3.0"
Expand Down Expand Up @@ -118,7 +118,7 @@ Uses JNA (https://github.com/twall/jna).
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[35,)" #mandatory
versionRange="[36,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
Expand All @@ -137,7 +137,7 @@ Uses JNA (https://github.com/twall/jna).
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[35,)" #mandatory
versionRange="[36,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
Expand Down

0 comments on commit f7198db

Please sign in to comment.