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 03a4f88 commit ff9e80d
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.19.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,15 +311,6 @@ public void fillItemList(@NotNull NonNullList<ItemStack> output) {
output.add(GarnishedItems.POLAR_BEAR_HIDE.asStack());
output.add(GarnishedItems.POLAR_HIDE_SCRATCH_PAPER.asStack());

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

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

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

Expand Down Expand Up @@ -512,6 +503,16 @@ public void fillItemList(NonNullList<ItemStack> output) {
output.add(GarnishedBlocks.DRIED_DULSE_KELP_BLOCK.asStack());
output.add(GarnishedBlocks.VOLTAIC_SEA_GRASS.asStack());

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

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

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

Expand Down

0 comments on commit ff9e80d

Please sign in to comment.