Skip to content

Commit

Permalink
Merge branch '1.19.3' into 1.19.4
Browse files Browse the repository at this point in the history
* 1.19.3:
  Updated changelog, fixed flammabilit
  • Loading branch information
Faboslav committed Oct 3, 2024
2 parents 3fb5ecd + 791aa44 commit 51265a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## 3.0.4

- Improved internal registries logic (Might fix some crashes)
- Mod should now not crash with mods like Caverns & Chasms and Unvoted & Shelved
- Fixed crashes with mods like Caverns & Chasms, Unvoted & Shelved and Sinytra Connector
- Fixed block flammability

## 3.0.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static void registerFlammablity(RegisterFlammabilityEvent event) {
.map(RegistryEntry::get)
.filter(block -> block instanceof BeehiveBlock && (block != WARPED_BEEHIVE && block != CRIMSON_BEEHIVE)) // TODO check this
.map(block -> (BeehiveBlock) block)
.forEach(item -> event.register(ACACIA_BEEHIVE.get(), 20, 5));
.forEach(block -> event.register(block, 20, 5));
}

private FriendsAndFoesBlocks() {
Expand Down

0 comments on commit 51265a3

Please sign in to comment.