Skip to content

Commit

Permalink
Merge branch 'master' into 1.19.3
Browse files Browse the repository at this point in the history
# Conflicts:
#	gradle.properties
  • Loading branch information
Treetrain1 committed Jan 29, 2023
2 parents 6942461 + cb8b417 commit 5c51e80
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,11 @@ dependencies {
modCompileOnly("org.joml:joml:1.10.4")
modCompileOnly("org.anarres:jcpp:1.4.14")

// BetterEnd
modCompileOnly("maven.modrinth:betterend:${betterend_version}")

// BetterNether
modCompileOnly("maven.modrinth:betternether:7.1.2")
modCompileOnly("maven.modrinth:betternether:${betternether_version}")

// only affects runClient, does not affect gradlew build.
// add -PuseThirdPartyMods=false to not use these
Expand Down
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,15 @@
frozenlib_version=1.1.10-mc1.19.3

# External Mods
betterend_version=3.1.2
betternether_version=8.1.3
modmenu_version=5.0.1
cloth_config_version=9.0.94
copperpipes_version=1.11.4-1.19.3
nbtcrafting_version=2.2.3+mc1.19
tomsstorage_version=1.19.3-1.4.5-fabric
terrablender_version=1.19.3-2.1.0.139
terralith_version=2.3.5
terrablender_version=1.19.3-2.1.0.139
tomsstorage_version=1.19.3-1.4.5-fabric

# Optimization
sodium_version=mc1.19.2-0.4.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import net.frozenblock.lib.integration.api.ModIntegration;
import net.frozenblock.wilderwild.misc.config.ClothConfigInteractionHandler;
import org.betterx.betterend.registry.EndBlocks;

import static net.frozenblock.lib.sound.api.block_sound_group.BlockSoundGroupOverwrites.addBlock;
import static net.frozenblock.wilderwild.registry.RegisterBlockSoundGroups.LEAVES;
Expand All @@ -13,11 +14,11 @@ public BetterEndIntegration() {

@Override
public void init() {
addBlock(id("pythadendron_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(id("lacugrove_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(id("dragon_tree_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(id("tenanea_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(id("helix_tree_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(id("lucernia_leaves"), LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.PYTHADENDRON_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.LACUGROVE_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.DRAGON_TREE_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.TENANEA_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.HELIX_TREE_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
addBlock(EndBlocks.LUCERNIA_LEAVES, LEAVES, ClothConfigInteractionHandler::leafSounds);
}
}

0 comments on commit 5c51e80

Please sign in to comment.