Skip to content

Commit

Permalink
Make vegetation opaque
Browse files Browse the repository at this point in the history
  • Loading branch information
xxfast committed Jun 7, 2020
1 parent b7bf837 commit c9d43b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/kotlin/com/xfastgames/witness/Witness.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ class Witness : ModInitializer {
registerBlock(TallYucca.BLOCK, "tall_yucca", RenderLayer.getCutout())
registerBlock(JasmineBush.BLOCK, "jasmine_bush", RenderLayer.getCutout())
registerBlock(MimosaBush.BLOCK, "mimosa_bush", RenderLayer.getCutout())
registerBlock(PurpleBougainvilleaDrape.BLOCK, "purple_bougainvillea", RenderLayer.getTranslucent())
registerBlock(BlueBougainvilleaDrape.BLOCK, "blue_bougainvillea", RenderLayer.getTranslucent())
registerBlock(PinkCedarLeaves.BLOCK, "pink_cedar_leaves", RenderLayer.getTranslucent())
registerBlock(PurpleBougainvilleaDrape.BLOCK, "purple_bougainvillea", RenderLayer.getCutout())
registerBlock(BlueBougainvilleaDrape.BLOCK, "blue_bougainvillea", RenderLayer.getCutout())
registerBlock(PinkCedarLeaves.BLOCK, "pink_cedar_leaves", RenderLayer.getCutout())
registerBlock(CedarLog.BLOCK, "cedar_log")
registerFeature("yucca_growth", YuccaFeature())
registerFeature("jasmine_bush_growth", JasmineBushFeature())
Expand Down

0 comments on commit c9d43b3

Please sign in to comment.