Skip to content

Commit

Permalink
ice i found your problem
Browse files Browse the repository at this point in the history
sludge is not opaque and should be marked as such
  • Loading branch information
adenator0 committed Dec 8, 2024
1 parent 4face35 commit f36457f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static void init() {}
AbstractBlock.Settings.create().velocityMultiplier(0.6F).jumpVelocityMultiplier(0.9F).emissiveLighting(ModBlocks::always).luminance(value -> 13).sounds(BlockSoundGroup.HONEY)
);
public static final Block SLUDGE = register("sludge", Sludge::new,
AbstractBlock.Settings.create().velocityMultiplier(0.8F).jumpVelocityMultiplier(0.5F).slipperiness(0.992F).sounds(BlockSoundGroup.HONEY)
AbstractBlock.Settings.create().velocityMultiplier(0.8F).jumpVelocityMultiplier(0.5F).slipperiness(0.992F).sounds(BlockSoundGroup.HONEY).nonOpaque()
);

public static Block register(String path, Function<AbstractBlock.Settings, Block> function, AbstractBlock.Settings settings) {
Expand Down

0 comments on commit f36457f

Please sign in to comment.