Skip to content

Commit

Permalink
fix: BlockHangingSignBehavior now extends `BlockEntityHolderCompone…
Browse files Browse the repository at this point in the history
…nt<BlockEntityHangingSign>` which was forgotten to be added
  • Loading branch information
smartcmd committed Jan 7, 2025
1 parent c526ba2 commit d31ce21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Unless otherwise specified, any version comparison below is the comparison of se

### Fixed

- (API) `BlockHangingSignBehavior` now extends `BlockEntityHolderComponent<BlockEntityHangingSign>` which was forgotten
to be added.
- Fixed the bug that interacting with door doesn't have any sound.
- Waxing copper-made block using honeycomb won't call `BlockFadeEvent` now.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package org.allaymc.api.block.interfaces;

import org.allaymc.api.block.BlockBehavior;
import org.allaymc.api.block.component.BlockEntityHolderComponent;
import org.allaymc.api.blockentity.interfaces.BlockEntityHangingSign;

public interface BlockHangingSignBehavior extends BlockBehavior {
public interface BlockHangingSignBehavior extends BlockBehavior, BlockEntityHolderComponent<BlockEntityHangingSign> {
}

0 comments on commit d31ce21

Please sign in to comment.