Skip to content

Commit 5b53080

Browse files
1.8.5
1 parent 61c084a commit 5b53080

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
## Create: Dragons Plus 1.8.4
1+
## Create: Dragons Plus 1.8.5
22

3-
Update for Create ***6.0.8***.
3+
### Update
4+
* Bulk Sanding doesn't use Quicksand(neoforge) as a hard requirement.
5+
Now, whenever any one of the following conditions is met: `Quicksand installed`, `C:DnD installed`, or `Bulk Sanding block tag contains a block`, then Bulk Sanding is activated.
6+
7+
### Fix
8+
* Update recipe format for new version of KubeJS-Create compatibility

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mod_id = create_dragons_plus
1717
mod_artifact_id = create-dragons-plus
1818
mod_name = Create: Dragons Plus
1919
mod_license = LGPL-3.0-or-later
20-
mod_version = 1.8.4
20+
mod_version = 1.8.5
2121
mod_group_id = plus.dragons.createdragonsplus
2222
mod_authors = DragonsPlus
2323
mod_description = Library mod for DragonsPlusMinecraft Create-addons.

src/main/java/plus/dragons/createdragonsplus/integration/jei/category/FanSandingCategory.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
import net.minecraft.core.component.DataComponents;
3737
import net.minecraft.core.registries.BuiltInRegistries;
3838
import net.minecraft.core.registries.Registries;
39+
import net.minecraft.resources.ResourceLocation;
40+
import net.minecraft.tags.TagKey;
3941
import net.minecraft.world.item.ItemStack;
4042
import net.minecraft.world.item.crafting.RecipeHolder;
4143
import net.minecraft.world.item.crafting.RecipeType;
@@ -78,6 +80,8 @@ public static FanSandingCategory create() {
7880
@Override
7981
protected void renderAttachedBlock(GuiGraphics graphics) {
8082
var optional = BuiltInRegistries.BLOCK.getTag(CDPBlocks.MOD_TAGS.fanSandingCatalysts);
83+
if (optional.isEmpty())
84+
optional = BuiltInRegistries.BLOCK.getTag(TagKey.create(Registries.BLOCK, ResourceLocation.fromNamespaceAndPath("dndesires", "fan_processing_catalysts/sanding")));
8185
if (optional.isEmpty())
8286
return;
8387
if (catalystBlocks != optional.get()) {

0 commit comments

Comments
 (0)