Skip to content

Commit

Permalink
Update to 23w51b.
Browse files Browse the repository at this point in the history
- Update to 23w51b
  • Loading branch information
gniftygnome committed Jan 13, 2024
1 parent 7a59932 commit 8002296
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
includeMod "terraform-api", "com.terraformersmc.terraform-api:terraform-wood-api-v1:${project.terraform_wood_api_version}"

if (findProject(':terrestria-worldgen') != null) {
includeMod "biolith", "com.terraformersmc:biolith:${biolith_version}"
includeMod "biolith", "com.terraformersmc:biolith-fabric:${biolith_version}"
}

afterEvaluate {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import net.minecraft.block.*;
import net.minecraft.entity.effect.StatusEffect;
import net.minecraft.registry.entry.RegistryEntry;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Vec3d;
import net.minecraft.util.shape.VoxelShape;
Expand All @@ -10,7 +11,7 @@
public class BasaltFlowerBlock extends FlowerBlock {
public static final VoxelShape SHAPE = Block.createCuboidShape(2.0D, 0.0D, 2.0D, 14.0D, 16.0D, 14.0D);

public BasaltFlowerBlock(StatusEffect stewEffect, int effectSeconds, Settings settings) {
public BasaltFlowerBlock(RegistryEntry<StatusEffect> stewEffect, int effectSeconds, Settings settings) {
super(stewEffect, effectSeconds, settings.offset(AbstractBlock.OffsetType.XZ));
}

Expand Down
16 changes: 8 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ fabric.loom.multiProjectOptimisation=true
maven_group=com.terraformersmc
archive_name=terrestria

minecraft_version=1.20.3
yarn_mappings=1.20.3+build.1
loader_version=0.15.1
fabric_version=0.91.1+1.20.3
minecraft_version=23w51b
yarn_mappings=23w51b+build.4
loader_version=0.15.3
fabric_version=0.93.1+1.20.5

# Terraform modules
terraform_biome_remapper_api_version=9.0.0
Expand All @@ -19,10 +19,10 @@ terraform_tree_api_version=9.0.0
terraform_wood_api_version=9.0.0

# Biolith for worldgen module and testing
biolith_version=1.1.0-beta.1
biolith_version=1.2.0-beta.1

# TerraBlender for worldgen module and testing
terrablender_version=1.20.3-3.3.0.2
terrablender_version=1.20.4-3.3.0.5

# Project Metadata
project_name=Terrestria
Expand All @@ -36,14 +36,14 @@ default_release_type=alpha
# CurseForge Metadata
curseforge_slug=terrestria
curseforge_id=323974
curseforge_game_versions=1.20.3, 1.20.4, Fabric, Quilt
curseforge_game_versions=1.20.5-Snapshot, Fabric, Quilt
curseforge_required_dependencies=fabric-api
curseforge_optional_dependencies=

# Modrinth Metadata
modrinth_slug=terrestria
modrinth_id=lsUDPMOT
modrinth_game_versions=1.20.3, 1.20.4
modrinth_game_versions=23w51b
modrinth_mod_loaders=fabric, quilt
modrinth_required_dependencies=fabric-api
#modrinth_embedded_dependencies=biolith
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"depends": {
"fabricloader": ">=0.15",
"fabric-api": ">=0.85.0",
"minecraft": ">=1.20.3 <1.21",
"minecraft": ">=1.20.4 <1.21",
"java": ">=17"
}
}
4 changes: 2 additions & 2 deletions worldgen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ loom {

dependencies {
// Biolith and TerraBlender for the worldgen API modules
modImplementation "com.terraformersmc:biolith:${biolith_version}"
modCompileOnlyApi "com.github.glitchfiend:TerraBlender-fabric:${terrablender_version}"
modImplementation "com.terraformersmc:biolith-fabric:${biolith_version}"
modCompileOnly "com.github.glitchfiend:TerraBlender-fabric:${terrablender_version}"

implementation project(path: ':terrestria-common')
}
2 changes: 1 addition & 1 deletion worldgen/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
}
},
"depends": {
"biolith": "*"
"biolith": ">=1.2.0-beta.1"
}
}

0 comments on commit 8002296

Please sign in to comment.