Load hanging signs, too (#577)

This commit is contained in:
TechnicJelle 2024-07-25 15:57:43 +02:00 committed by GitHub
parent 974b367128
commit 587abb2a89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,11 +35,13 @@
public interface BlockEntityType extends Keyed, BlockEntityLoader {
BlockEntityType SIGN = new Impl(Key.minecraft("sign"), SignBlockEntity::new);
BlockEntityType HANGING_SIGN = new Impl(Key.minecraft("hanging_sign"), SignBlockEntity::new);
BlockEntityType SKULL = new Impl(Key.minecraft("skull"), SkullBlockEntity::new);
BlockEntityType BANNER = new Impl(Key.minecraft("banner"), BannerBlockEntity::new);
Registry<BlockEntityType> REGISTRY = new Registry<>(
SIGN,
HANGING_SIGN,
SKULL,
BANNER
);