Finish updating to 1.19, rename Aion to Eternium
This commit is contained in:
parent
f3e94c68a7
commit
7dc2dbda4f
55 changed files with 298 additions and 190 deletions
|
@ -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="[40,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
||||
loaderVersion="[41,]" #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="GPL 2.0"
|
||||
|
@ -40,7 +40,7 @@ The entire purpose of this mod is to add datapack resources that will be present
|
|||
# Does this dependency have to exist - if not, ordering below must be specified
|
||||
mandatory=true #mandatory
|
||||
# The version range of the dependency
|
||||
versionRange="[41,)" #mandatory
|
||||
versionRange="[41,]" #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
|
||||
|
@ -50,6 +50,6 @@ The entire purpose of this mod is to add datapack resources that will be present
|
|||
modId="minecraft"
|
||||
mandatory=true
|
||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
||||
versionRange="[1.19)"
|
||||
versionRange="[1.19,]"
|
||||
ordering="NONE"
|
||||
side="BOTH"
|
||||
|
|
Reference in a new issue