Skip to content

Commit fa8f38d

Browse files
committed
fix broken remap=false
1 parent 31e2def commit fa8f38d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/mega/fluidlogged/internal/mixin/mixins/client/RenderBlockFluidMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
import net.minecraftforge.fluids.BlockFluidBase;
3535
import net.minecraftforge.fluids.RenderBlockFluid;
3636

37-
@Mixin(value = RenderBlockFluid.class,
38-
remap = false)
37+
@Mixin(value = RenderBlockFluid.class)
3938
public abstract class RenderBlockFluidMixin {
4039
@Redirect(method = "getFluidHeightForRender",
4140
at = @At(value = "INVOKE",
@@ -56,6 +55,7 @@ private int fluidHeightGetBlockMeta(IBlockAccess world, int x, int y, int z, @Lo
5655
@Redirect(method = "getFluidHeightForRender",
5756
at = @At(value = "INVOKE",
5857
target = "Lnet/minecraftforge/fluids/BlockFluidBase;getQuantaPercentage(Lnet/minecraft/world/IBlockAccess;III)F"),
58+
remap = false,
5959
require = 1)
6060
private float fluidHeightQuanta(BlockFluidBase instance, IBlockAccess world, int x, int y, int z) {
6161
if (((FLBlockAccess)world).fl$isFluidLogged(x, y, z, null)) {

0 commit comments

Comments
 (0)