Skip to content

Commit

Permalink
Fix missing mushroom-derived blocks like mushroom stem pile, mushroom…
Browse files Browse the repository at this point in the history
… stump, etc.
  • Loading branch information
LambdAurora committed Aug 9, 2023
1 parent ce9aa00 commit aaca7eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,8 @@

- Fixed missing copper sulfate wall lantern and possibly more.

### 1.0.0-beta.16

- Fixed missing mushroom-derived blocks like mushroom stem pile, mushroom stump, etc.

[EMI]: https://modrinth.com/mod/emi "EMI Modrinth page"
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx1G

# Mod properties
mod_version=1.0.0-beta.15
mod_version=1.0.0-beta.16
maven_group=dev.lambdaurora
archives_base_name=aurorasdecorations
modrinth_id=GOqAnOfW
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ public enum ComponentType {
}),
LOG((id, block) -> {
if (block == Blocks.BAMBOO_BLOCK) return "bamboo";
else if (block == Blocks.MUSHROOM_STEM) return "mushroom";

String logType;
if (id.getPath().startsWith("stripped_")) return null;
Expand Down

0 comments on commit aaca7eb

Please sign in to comment.