This commit is contained in:
Lukas Rieger (Blue) 2024-08-03 09:48:13 +02:00
commit f6d39fcdb1
No known key found for this signature in database
GPG Key ID: AA33883B1BBA03E6

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
);