Skip to content

Commit

Permalink
build: 1.20.6+ lexforge
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed Sep 29, 2024
1 parent 282925d commit 65fbe56
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ loom.platform=forge
# Fabric Properties
# check these on https://fabricmc.net/develop
# minecraft version
minecraft_version=1.19.4
minecraft_version=1.20.6
# forge version, latest version can be found on https://files.minecraftforge.net/
forge_version=1.19.4-45.0.46
forge_version=1.20.6-50.1.19
# yarn, latest version can be found on https://fabricmc.net/develop/
yarn_mappings=1.19.4+build.2
yarn_mappings=1.20.6+build.3

# Mod Properties
mod_version = 1.1.0+forge
mod_version = 1.1.1+forge
maven_group = com.ishland
archives_base_name = unsafe-world-random-access-detector

Expand Down
8 changes: 3 additions & 5 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is an example mods.toml file.
# Any fields that aren't annotated with #optional are *required*!
modLoader = "javafml"
loaderVersion = "[41,)"
loaderVersion = "[50,)"
license = "MIT" # Want to make your mod open source? Check out https://choosealicense.com/!

# This is a URL to e.g. your GitHub or CurseForge issues page.
Expand Down Expand Up @@ -39,16 +39,14 @@ modId = "forge"
mandatory = true # do you **need** this mod to be able to launch?
# A version range using interval notation.
# Brackets mean "inclusive" bounds, while parentheses mean "exclusive".
versionRange = "[41,)"
versionRange = "[50,)"
ordering = "NONE" # Use this if you want your mod to be loaded specifically BEFORE or AFTER another mod
side = "BOTH" # Specify where this mod is required: can be BOTH, CLIENT or SERVER

# And another dependency, use this if you want to require a certain Minecraft version.
[[dependencies.unsafe_world_random_access_detector]]
modId = "minecraft"
mandatory = true
# See above for how to read this notation, this essentially means any
# version of Minecraft from 1.19.4 (inclusive).
versionRange = "[1.19,)"
versionRange = "[1.20.6,)"
ordering = "NONE"
side = "BOTH"

0 comments on commit 65fbe56

Please sign in to comment.