Skip to content

Commit

Permalink
v2.0 - tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
DakotaPride committed Oct 6, 2024
1 parent 6124978 commit f0d02fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
]
}
],
"type": "garnished:blue_dye_blowing",
"type": "garnished:magenta_dye_blowing",
"ingredients": [
{
"tag": "ae2:paint_balls"
}
],
"results": [
{
"item": "ae2:blue_paint_ball",
"item": "ae2:magenta_paint_ball",
"count": 1
}
]
Expand Down

0 comments on commit f0d02fc

Please sign in to comment.