From 75a2726d613ce2e119eb7b4c6d947e7b5d450d62 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 7 Oct 2025 23:18:16 +0100 Subject: [PATCH] quicksand nerfs --- .../worldgen/configured_feature/mars/terrain/red_quicksand.json | 1 + kubejs/server_scripts/wan_ancient_beasts/tags.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json index 1c7c6642b..ecfbdaa8e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json +++ b/kubejs/data/tfg/worldgen/configured_feature/mars/terrain/red_quicksand.json @@ -8,6 +8,7 @@ "min_radius": 2, "max_radius": 3, "height": 1, + "integrity": 0.75, "states": [ { "replace": "minecraft:red_sand", diff --git a/kubejs/server_scripts/wan_ancient_beasts/tags.js b/kubejs/server_scripts/wan_ancient_beasts/tags.js index e729229b6..faba038ac 100644 --- a/kubejs/server_scripts/wan_ancient_beasts/tags.js +++ b/kubejs/server_scripts/wan_ancient_beasts/tags.js @@ -9,6 +9,8 @@ const registerWABBlockTags = (event) => { // don't put sand layers on these, otherwise they'll fall through event.add('minecraft:snow_layer_cannot_survive_on', 'wan_ancient_beasts:quick_sand') event.add('minecraft:snow_layer_cannot_survive_on', 'wan_ancient_beasts:quick_red_sand') + event.add('minecraft:mineable/shovel', 'wan_ancient_beasts:quick_sand') + event.add('minecraft:mineable/shovel', 'wan_ancient_beasts:quick_red_sand') } const registerWABItemTags = (event) => {