@@ -39,9 +39,9 @@ public class Glowcase implements ModInitializer {
39
39
public static final Supplier <BlockItem > ITEM_DISPLAY_BLOCK_ITEM = registerItem ("item_display_block" , () -> new BlockItem (ITEM_DISPLAY_BLOCK .get (), new Item .Settings ()));
40
40
public static final Supplier <BlockEntityType <ItemDisplayBlockEntity >> ITEM_DISPLAY_BLOCK_ENTITY = registerBlockEntity ("item_display_block" , () -> BlockEntityType .Builder .create (ItemDisplayBlockEntity ::new , ITEM_DISPLAY_BLOCK .get ()).build (null ));
41
41
42
- public static final Supplier <ParticleDisplayBlock > PARTICLE_DISPLAY_BLOCK = registerBlock ("particle_display_block " , ParticleDisplayBlock ::new );
43
- public static final Supplier <BlockItem > PARTICLE_DISPLAY_BLOCK_ITEM = registerItem ("particle_display_block " , () -> new BlockItem (PARTICLE_DISPLAY_BLOCK .get (), new Item .Settings ()));
44
- public static final Supplier <BlockEntityType <ParticleDisplayBlockEntity >> PARTICLE_DISPLAY_BLOCK_ENTITY = registerBlockEntity ("particle_display_block " , () -> BlockEntityType .Builder .create (ParticleDisplayBlockEntity ::new , PARTICLE_DISPLAY_BLOCK .get ()).build (null ));
42
+ public static final Supplier <ParticleDisplayBlock > PARTICLE_DISPLAY = registerBlock ("particle_display " , ParticleDisplayBlock ::new );
43
+ public static final Supplier <BlockItem > PARTICLE_DISPLAY_ITEM = registerItem ("particle_display " , () -> new BlockItem (PARTICLE_DISPLAY .get (), new Item .Settings ()));
44
+ public static final Supplier <BlockEntityType <ParticleDisplayBlockEntity >> PARTICLE_DISPLAY_BLOCK_ENTITY = registerBlockEntity ("particle_display " , () -> BlockEntityType .Builder .create (ParticleDisplayBlockEntity ::new , PARTICLE_DISPLAY .get ()).build (null ));
45
45
46
46
47
47
public static final Supplier <TextBlock > TEXT_BLOCK = registerBlock ("text_block" , TextBlock ::new );
@@ -68,7 +68,7 @@ public class Glowcase implements ModInitializer {
68
68
entries .add (POPUP_BLOCK_ITEM .get ());
69
69
entries .add (SPRITE_BLOCK_ITEM .get ());
70
70
entries .add (LOCK_ITEM .get ());
71
- entries .add (PARTICLE_DISPLAY_BLOCK_ITEM .get ());
71
+ entries .add (PARTICLE_DISPLAY_ITEM .get ());
72
72
})
73
73
.build ()
74
74
);
0 commit comments