Skip to content

Commit

Permalink
Remove BYG Integration (Temporary until they release a 1.20.1 version)
Browse files Browse the repository at this point in the history
(cherry picked from commit 307872a)
  • Loading branch information
JT122406 committed Mar 9, 2024
1 parent 8e0bf0c commit 08cd271
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 136 deletions.
2 changes: 0 additions & 2 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ dependencies {
modCompileOnly("com.cobblemon:mod:${project.properties["cobblemon_version"]}")

//BiomeMod Integration
modCompileOnly("maven.modrinth:biomesyougo:${project.properties["BYGForge_version"]}")
//modCompileOnly("curse.maven:oh-the-biomes-youll-go-247560:${project.properties["BYGForge_version"]}")
modCompileOnly("com.github.glitchfiend:TerraBlender-common:$minecraftVersion-${project.properties["terrablender_version"]}")
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ public class Config {

public static class Integration {
public boolean AllowIntegrations = true;
public boolean AllowBYGIntegration = true;
public boolean AllowBiomesOPlentyIntegration = true;
}

Expand Down
3 changes: 0 additions & 3 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ dependencies {

//BiomeMod Integration
modApi("com.github.glitchfiend:TerraBlender-fabric:$minecraftVersion-${project.properties["terrablender_version"]}")
//modCompileOnly("curse.maven:oh-the-biomes-youll-go-fabric-391378:${project.properties["BYGFabric_version"]}")
//modCompileOnly("curse.maven:CorgiLib-693313:4681375")
//modCompileOnly("software.bernie.geckolib:geckolib-fabric-$minecraftVersion:${project.properties["geckolib_version"]}")
}

tasks {
Expand Down
3 changes: 0 additions & 3 deletions forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ dependencies {
//BiomeMod Integration
modApi("com.github.glitchfiend:TerraBlender-forge:$minecraftVersion-${project.properties["terrablender_version"]}")
modApi("com.github.glitchfiend:BiomesOPlenty:$minecraftVersion-${project.properties["BOP_version"]}")
modCompileOnly("maven.modrinth:biomesyougo:${project.properties["BYGForge_version"]}")
//modRuntimeOnly("curse.maven:CorgiLib-693313:4681375")
//modRuntimeOnly("software.bernie.geckolib:geckolib-forge-$minecraftVersion:${project.properties["geckolib_version"]}")
modRuntimeOnly(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package generations.gg.generations.structures.generationsstructures.forge;

import generations.gg.generations.structures.generationsstructures.GenerationsStructures;
import generations.gg.generations.structures.generationsstructures.byg.BYG;
import generations.gg.generations.structures.generationsstructures.forge.events.LifeCycleEvents;
import generations.gg.generations.structures.generationsstructures.forge.integration.BOP;
import generations.gg.generations.structures.generationsstructures.forge.integration.BYGBOP;
import generations.gg.generations.structures.generationsstructures.integration.Default;
import generations.gg.generations.structures.generationsstructures.integration.Integration;
import generations.gg.generations.structures.generationsstructures.processors.StructureProcessors;
Expand All @@ -25,9 +23,7 @@
public class GenerationsStructuresForge {
public GenerationsStructuresForge() {
Integration integration;
if (ModList.get().isLoaded(biomesoplenty.core.BiomesOPlenty.MOD_ID) && ModList.get().isLoaded(potionstudios.byg.BYG.MOD_ID)) integration = new BYGBOP();
else if (ModList.get().isLoaded(biomesoplenty.core.BiomesOPlenty.MOD_ID)) integration = new BOP();
else if (ModList.get().isLoaded(potionstudios.byg.BYG.MOD_ID)) integration = new BYG();
if (ModList.get().isLoaded(biomesoplenty.core.BiomesOPlenty.MOD_ID)) integration = new BOP();
else integration = new Default();
GenerationsStructures.init(integration);
IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus();
Expand Down

This file was deleted.

7 changes: 0 additions & 7 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,6 @@ Adds structures for the Generations Mod Family
ordering = "AFTER"
side = "BOTH"

[[dependencies.generations_structures]]
modId = "byg"
mandatory = false
versionRange = "[4.0.0.0,)"
ordering = "AFTER"
side = "BOTH"

[[dependencies.generations_structures]]
modId="cobblemon"
mandatory = true
Expand Down

0 comments on commit 08cd271

Please sign in to comment.