Final commit to resolve #2675 I hope. Thanks to Ayutac

Bug history: Cells were able to put out fluids which are not FlowableFluids, causing a textureless block to appear. First commit checked for FlowableFluid necessary in cell item to do anything with it. However since EMPTY is not a FlowableFluid that led to Cells being unable to pick up fluids any longer. Second commit attempted to fix but didn't because I checked it wrongly (tested with buckets instead of cells). In fact it doesn't do anything (because the same check was performed earlier), so I reverted it with this commit. And finally this commit adds EMPTY as an acceptable fluid inside a cell to do something with it.
This commit is contained in:
Ayutac 2022-01-02 10:12:58 +01:00 committed by GitHub
parent 808f4e9c86
commit e95428d0f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,7 +171,7 @@ public class DynamicCellItem extends Item implements ItemFluidInfo {
Fluid containedFluid = getFluid(stack);
BlockHitResult hitResult = raycast(world, player, containedFluid == Fluids.EMPTY ? RaycastContext.FluidHandling.SOURCE_ONLY : RaycastContext.FluidHandling.NONE);
if (hitResult.getType() == HitResult.Type.MISS || !(containedFluid instanceof FlowableFluid)) {
if (hitResult.getType() == HitResult.Type.MISS || !(containedFluid instanceof FlowableFluid || Fluids.EMPTY == containedFluid)) {
return TypedActionResult.pass(stack);
}
if (hitResult.getType() != HitResult.Type.BLOCK) {
@ -207,8 +207,6 @@ public class DynamicCellItem extends Item implements ItemFluidInfo {
return TypedActionResult.success(resultStack, world.isClient());
}
} else {
if (!(containedFluid instanceof FlowableFluid))
return TypedActionResult.pass(stack);
BlockState placeState = world.getBlockState(placePos);
if (placeState.canBucketPlace(containedFluid)) {
placeFluid(player, world, placePos, hitResult, stack);