|
6 | 6 | # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml |
7 | 7 | modLoader = "javafml" #mandatory |
8 | 8 | # A version range to match for said mod loader - for regular FML @Mod it will be the forge version |
9 | | -loaderVersion = "[31,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. |
| 9 | +loaderVersion = "[36,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. |
10 | 10 | # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. |
11 | 11 | # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. |
12 | 12 | license = "MIT" |
@@ -38,21 +38,21 @@ description = ''' |
38 | 38 | ''' |
39 | 39 | # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. |
40 | 40 | [[dependencies.vplayer]] #optional |
41 | | -# the modid of the dependency |
42 | | -modId = "forge" #mandatory |
43 | | -# Does this dependency have to exist - if not, ordering below must be specified |
44 | | -mandatory = true #mandatory |
45 | | -# The version range of the dependency |
46 | | -versionRange = "[31,)" #mandatory |
47 | | -# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory |
48 | | -ordering = "NONE" |
49 | | -# Side this dependency is applied on - BOTH, CLIENT or SERVER |
50 | | -side = "BOTH" |
| 41 | + # the modid of the dependency |
| 42 | + modId = "forge" #mandatory |
| 43 | + # Does this dependency have to exist - if not, ordering below must be specified |
| 44 | + mandatory = true #mandatory |
| 45 | + # The version range of the dependency |
| 46 | + versionRange = "[36,)" #mandatory |
| 47 | + # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory |
| 48 | + ordering = "NONE" |
| 49 | + # Side this dependency is applied on - BOTH, CLIENT or SERVER |
| 50 | + side = "BOTH" |
51 | 51 | # Here's another dependency |
52 | 52 | [[dependencies.vplayer]] |
53 | | -modId = "minecraft" |
54 | | -mandatory = true |
| 53 | + modId = "minecraft" |
| 54 | + mandatory = true |
55 | 55 | # This version range declares a minimum of the current minecraft version up to but not including the next major version |
56 | | -versionRange = "[1.15.2,1.16)" |
57 | | -ordering = "NONE" |
58 | | -side = "BOTH" |
| 56 | + versionRange="[1.16.5,1.17)" |
| 57 | + ordering = "NONE" |
| 58 | + side = "BOTH" |
0 commit comments