Skip to content

Commit

Permalink
v1.8.5 - Fix Sorrowful Lichen in creative mode tab
Browse files Browse the repository at this point in the history
  • Loading branch information
DakotaPride committed Jun 13, 2024
1 parent 81c26f4 commit a98cc8f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G
# Mod Info
maven_group = net.dakotapride
archives_base_name = garnished
mod_version = 1.8.4
mod_version = 1.8.5

minecraft_version = 1.20.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,15 +343,6 @@ public void accept(CreativeModeTab.@NotNull ItemDisplayParameters parameters, Cr
output.accept(GarnishedItems.POLAR_BEAR_HIDE.asStack());
output.accept(GarnishedItems.POLAR_HIDE_SCRATCH_PAPER.asStack());

output.accept(GarnishedBlocks.SEPIA_FUNGUS.asStack());
output.accept(GarnishedBlocks.SOUL_ROOTS.asStack());
output.accept(GarnishedBlocks.INCANDESCENT_LILY.asStack());
output.accept(GarnishedBlocks.PANSOPHICAL_DAISY.asStack());

output.accept(GarnishedBlocks.BARREN_ROOTS.asStack());
output.accept(GarnishedBlocks.SMALL_CHORUS_PLANT.asStack());
output.accept(GarnishedBlocks.AUREATE_SHRUB.asStack());

output.accept(GarnishedItems.CRUSHED_SALT_COMPOUND.asStack());
output.accept(GarnishedItems.SALT_COMPOUND.asStack());

Expand Down Expand Up @@ -562,6 +553,16 @@ public void accept(CreativeModeTab.ItemDisplayParameters parameters, CreativeMod
output.accept(GarnishedBlocks.DRIED_DULSE_KELP_BLOCK.asStack());
output.accept(GarnishedBlocks.VOLTAIC_SEA_GRASS.asStack());

output.accept(GarnishedBlocks.SEPIA_FUNGUS.asStack());
output.accept(GarnishedBlocks.SOUL_ROOTS.asStack());
output.accept(GarnishedBlocks.INCANDESCENT_LILY.asStack());
output.accept(GarnishedBlocks.PANSOPHICAL_DAISY.asStack());
output.accept(GarnishedBlocks.SORROWFUL_LICHEN.asStack());

output.accept(GarnishedBlocks.BARREN_ROOTS.asStack());
output.accept(GarnishedBlocks.SMALL_CHORUS_PLANT.asStack());
output.accept(GarnishedBlocks.AUREATE_SHRUB.asStack());

output.accept(GarnishedBlocks.ANNIVERSARY_CAKE.asStack());
}

Expand Down

0 comments on commit a98cc8f

Please sign in to comment.