Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
JT122406 committed Nov 28, 2023
1 parent 9dd410c commit ad2ad45
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 126 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
modCompileOnly("earth.terrarium:botarium-common-$minecraftVersion:${project.properties["botarium_version"]}")

//Cobblemon
modCompileOnly("com.cobblemon:mod:${project.properties["cobblemon_version"]}") { isChanging = true }
modCompileOnly("com.cobblemon:mod:${project.properties["cobblemon_version"]}")

//BiomeMod Integration
modCompileOnly("maven.modrinth:biomesyougo:${project.properties["BYGForge_version"]}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import net.minecraft.world.level.levelgen.VerticalAnchor;
import net.minecraft.world.level.levelgen.heightproviders.ConstantHeight;
import net.minecraft.world.level.levelgen.heightproviders.HeightProvider;
import net.minecraft.world.level.levelgen.heightproviders.UniformHeight;
import net.minecraft.world.level.levelgen.structure.Structure;
import net.minecraft.world.level.levelgen.structure.TerrainAdjustment;
import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool;
Expand All @@ -41,14 +42,10 @@ private static void registerJigsaw(BootstapContext<Structure> context, ResourceK
context.register(structureResourceKey, structure);
}

private static JigsawStructure createJigsaw(Structure.StructureSettings settings,
Holder<StructureTemplatePool> startPool,
Optional<ResourceLocation> startJigsawName,
int maxDepth,
HeightProvider startHeight,
boolean useExpansionHack,
Optional<Heightmap.Types> projectStartToHeightmap,
int maxDistanceToCenter){
private static JigsawStructure createJigsaw(Structure.StructureSettings settings, Holder<StructureTemplatePool> startPool,
Optional<ResourceLocation> startJigsawName, int maxDepth,
HeightProvider startHeight, boolean useExpansionHack,
Optional<Heightmap.Types> projectStartToHeightmap, int maxDistanceToCenter){
return new JigsawStructure(settings, startPool, startJigsawName, maxDepth, startHeight, useExpansionHack, projectStartToHeightmap, maxDistanceToCenter);
}

Expand All @@ -62,7 +59,7 @@ private static JigsawStructure balloonJigsawStructure(Holder<StructureTemplatePo
poolHolderGetter,
Optional.empty(),
1,
ConstantHeight.of(VerticalAnchor.aboveBottom(150)),
UniformHeight.of(VerticalAnchor.absolute(260), VerticalAnchor.belowTop(160)),
false,
Optional.empty(),
80);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
modRuntimeOnly("earth.terrarium:botarium-fabric-$minecraftVersion:${project.properties["botarium_version"]}")

//Cobblemon
modApi("com.cobblemon:fabric:${project.properties["cobblemon_version"]}") { isChanging = true }
modApi("com.cobblemon:fabric:${project.properties["cobblemon_version"]}")
modRuntimeOnly("net.fabricmc:fabric-language-kotlin:1.10.15+kotlin.1.9.21")

//BiomeMod Integration
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {

//Cobblemon
implementation("thedarkcolour:kotlinforforge:4.7.0")
modApi("com.cobblemon:forge:${project.properties["cobblemon_version"]}") { isChanging = true }
modApi("com.cobblemon:forge:${project.properties["cobblemon_version"]}")

//BiomeMod Integration
modApi("com.github.glitchfiend:TerraBlender-forge:$minecraftVersion-${project.properties["terrablender_version"]}")
Expand Down

0 comments on commit ad2ad45

Please sign in to comment.