Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Bennyboy1695 committed Jul 18, 2024
1 parent 16c6f96 commit d930200
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import dev.architectury.injectables.annotations.ExpectPlatform;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.renderer.RenderType;
import net.minecraft.client.resources.model.BakedModel;
import net.minecraft.world.level.block.state.BlockState;
import org.jetbrains.annotations.NotNull;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ public class FluidPipeBlockMixin {
at = @At(value = "INVOKE", target = "Lnet/minecraft/world/level/Level;setBlockAndUpdate(Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z")
)
private boolean onWrenched(Level instance, BlockPos pos, BlockState state, Operation<Boolean> original) {
/* if (state.is(AllBlocks.GLASS_FLUID_PIPE.get()) && instance.getBlockState(pos).is(CCBlocks.COPYCAT_FLUID_PIPE.get())) {
if (state.is(AllBlocks.GLASS_FLUID_PIPE.get()) && instance.getBlockState(pos).is(CCBlocks.COPYCAT_FLUID_PIPE.get())) {
return original.call(instance, pos, CCBlocks.COPYCAT_GLASS_FLUID_PIPE.getDefaultState()
.setValue(CopycatGlassFluidPipeBlock.AXIS, state.getValue(GlassFluidPipeBlock.AXIS))
.setValue(BlockStateProperties.WATERLOGGED, state.getValue(BlockStateProperties.WATERLOGGED)));
}*/
}
return original.call(instance, pos, state);
}
}
1 change: 0 additions & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ dependencies {

modLocalRuntime("curse.maven:rubidium-574856:${rubidium_forge_curse_id}")
modImplementation("curse.maven:additional-placements-674852:${additionalplacements_forge_curse_id}")
modLocalRuntime("curse.maven:create-industry-693815:${tfmg_forge_curse_id}")

modCompileOnly("curse.maven:double-slabs-350179:${double_slabs_curse_id}")

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jei_forge_version=10.2.1.280
rubidium_forge_curse_id=4494903
additionalplacements_forge_curse_id=5142060
jade_forge_curse_id=5079263
tfmg_forge_curse_id=5505873

#Fabric Properties
create_fabric_version=0.5.1-f-build.1349+mc1.18.2
Expand Down

0 comments on commit d930200

Please sign in to comment.