Skip to content

Commit

Permalink
Merge pull request #221 from KevinDaGame/feat/forge_1.20.2
Browse files Browse the repository at this point in the history
Update Forge to 1.20.2
  • Loading branch information
KevinDaGame authored Sep 22, 2023
2 parents 5a52930 + 17fa4b6 commit 30e5776
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions VoxelSniperForge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ plugins {
id 'org.spongepowered.mixin'
}

def forge_mc_version = findProperty("voxelsniper.forge.mc-version") ?: "unspecified"
def forge_mc_version = findProperty("voxelsniper.forge.mc_version") ?: "unspecified"
def forge_version = findProperty("voxelsniper.forge.forge_version") ?: "unspecified"

description='VoxelSniperForge'

ext {
platform = "forge-" + forge_mc_version
}
Expand Down Expand Up @@ -100,7 +103,7 @@ dependencies {
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft ('net.minecraftforge:forge:1.20.1-47.1.0') {
minecraft ('net.minecraftforge:forge:' + forge_mc_version + '-' + forge_version) {
exclude group: 'org.slf4j'
}
shadow "net.kyori:adventure-text-serializer-gson:4.11.0"
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Forge Properties
voxelsniper.forge.mc-version=1.20.1
voxelsniper.forge.mc_version=1.20.2
voxelsniper.forge.forge_version=48.0.1

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
Expand Down

0 comments on commit 30e5776

Please sign in to comment.