From f0d02fc32893dae52c0288a67e4f9bd181fc7740 Mon Sep 17 00:00:00 2001 From: Dakota Date: Sun, 6 Oct 2024 12:02:12 -0500 Subject: [PATCH] v2.0 - tweaks --- .../net/dakotapride/garnished/registry/GarnishedFluids.java | 2 +- .../garnished/recipes/dye_blowing/ae2/magenta/paint_ball.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/dakotapride/garnished/registry/GarnishedFluids.java b/src/main/java/net/dakotapride/garnished/registry/GarnishedFluids.java index c34f2c88..63e47e3e 100644 --- a/src/main/java/net/dakotapride/garnished/registry/GarnishedFluids.java +++ b/src/main/java/net/dakotapride/garnished/registry/GarnishedFluids.java @@ -257,7 +257,7 @@ public static BlockState whenFluidsMeet(LevelAccessor world, BlockPos pos, Block for (Direction direction : Iterate.directions) { FluidState metFluidState = fluidState.isSource() ? fluidState : world.getFluidState(pos.relative(direction)); - if (!metFluidState.is(FluidTags.WATER)) + if (metFluidState.is(FluidTags.LAVA)) continue; BlockState lavaInteraction = getLavaInteraction(metFluidState); if (lavaInteraction == null) diff --git a/src/main/resources/data/garnished/recipes/dye_blowing/ae2/magenta/paint_ball.json b/src/main/resources/data/garnished/recipes/dye_blowing/ae2/magenta/paint_ball.json index 2b4e6cda..45f544c3 100644 --- a/src/main/resources/data/garnished/recipes/dye_blowing/ae2/magenta/paint_ball.json +++ b/src/main/resources/data/garnished/recipes/dye_blowing/ae2/magenta/paint_ball.json @@ -7,7 +7,7 @@ ] } ], - "type": "garnished:blue_dye_blowing", + "type": "garnished:magenta_dye_blowing", "ingredients": [ { "tag": "ae2:paint_balls" @@ -15,7 +15,7 @@ ], "results": [ { - "item": "ae2:blue_paint_ball", + "item": "ae2:magenta_paint_ball", "count": 1 } ]