Skip to content

Commit

Permalink
Fixed crash when loading addons in production
Browse files Browse the repository at this point in the history
  • Loading branch information
Trhod17 committed Sep 19, 2023
1 parent 37323c5 commit 7390498
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -480,11 +480,11 @@ def secondaryJar(SourceSet sourceSet, String title) {
}

def apiJar = secondaryJar(sourceSets.api, '')
def cyclicJar = secondaryJar(sourceSets.cyclic, 'FlowerSeeds2-Cyclic')
def bygJar = secondaryJar(sourceSets.byg, 'FlowerSeeds2-BYG')
def bopJar = secondaryJar(sourceSets.bop, 'FlowerSeeds2-Biomes-O-Plenty')
def rosesJar = secondaryJar(sourceSets.roses, 'FlowerSeeds2-Roses')
def fabulousflowersJar = secondaryJar(sourceSets.fabulousflowers, 'FlowerSeeds2-Fabulous-Flowers')
def cyclicJar = secondaryJar(sourceSets.cyclic, 'FlowerSeeds2Cyclic')
def bygJar = secondaryJar(sourceSets.byg, 'FlowerSeeds2BYG')
def bopJar = secondaryJar(sourceSets.bop, 'FlowerSeeds2BiomesOPlenty')
def rosesJar = secondaryJar(sourceSets.roses, 'FlowerSeeds2Roses')
def fabulousflowersJar = secondaryJar(sourceSets.fabulousflowers, 'FlowerSeeds2FabulousFlowers')

def allJar = tasks.register('allJar', Jar, {
dependsOn(classes, apiClasses, cyclicClasses, bygClasses, bopClasses, rosesClasses, fabulousflowersClasses)
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ mod_name=Flower Seeds 2
mod_license=MIT
# The mod version. See https://semver.org/

mod_version=1.0.0
cyclic_version=1.0.0
roses_version=1.0.0
bop_version=1.0.0
byg_version=1.0.0
ff_version=1.0.0
mod_version=1.0.1
cyclic_version=1.0.1
roses_version=1.0.1
bop_version=1.0.1
byg_version=1.0.1
ff_version=1.0.1
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down

0 comments on commit 7390498

Please sign in to comment.