Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AViewFromTheTop committed Nov 27, 2023
1 parent 2394695 commit 1fe2843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ Bug Fixes & Changes
- Fixed an issue pertaining to Silk Touch with the Display Lantern's loot table
- Display Lanterns will now properly spawn Fireflies that were held inside of them when broken

- Disabling the option for Termites to only eat natural blocks will now no longer add the "termite_edible" property to any blocks
- Disabling the option will now require the game to restart, but may occasionally fix compat issues in return

- Fixed Jellyfish no longer spawning in Jellyfish Caves
- Slightly optimized Jellyfish rendering with the rainbow easter egg

- Osseous Sculk will now cover their branches in Sculk Veins when its base is converted to Sculk
- Increased the chances of larger Oseeous Sculk generating during worldgen
- Stone Chests will now interact with Redstone Comparators, outputting a signal based on how high their lid is lifted ([#319](https://github.com/FrozenBlock/WilderWild/issues/319))

- The config will now sync between server and client
- Operators of servers will modify the server's config upon modifying it on their end
- Non-operators will see that config options that don't solely pertain to the client will be blocked out and set to the server's value
- Added a "New Frosted Ice Cracking" config option to control Frosted Ice's updated cracking (playing sounds and spawning particles)
- Added a config option for whether or not Dripleaves will use updated Redstone powering functionality
- Swapped the placement of the Misc and Worldgen config tabs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ public class RotatedPillarBlockMixin {

@Inject(method = "createBlockStateDefinition", at = @At("TAIL"))
private void addTermiteEdibleState(StateDefinition.Builder<Block, BlockState> builder, CallbackInfo info) {
if (BlockConfig.get().termite.onlyEatNaturalBlocks) {
builder.add(RegisterProperties.TERMITE_EDIBLE);
}
builder.add(RegisterProperties.TERMITE_EDIBLE);
}

@ModifyReturnValue(method = "getStateForPlacement", at = @At("RETURN"))
Expand Down

0 comments on commit 1fe2843

Please sign in to comment.