Adjust hitbox for the spellbook entity

This commit is contained in:
Sollace 2022-09-10 17:29:56 +02:00
parent e26c4bbf9e
commit 10eb493ccf

View file

@ -45,7 +45,7 @@ public interface UEntities {
.dimensions(EntityDimensions.fixed(0.1F, 0.1F)));
EntityType<SpellbookEntity> SPELLBOOK = register("spellbook", FabricEntityTypeBuilder.create(SpawnGroup.MISC, SpellbookEntity::new)
.trackRangeBlocks(200)
.dimensions(EntityDimensions.fixed(0.9F, 0.25F)));
.dimensions(EntityDimensions.fixed(0.9F, 0.5F)));
static <T extends Entity> EntityType<T> register(String name, FabricEntityTypeBuilder<T> builder) {
EntityType<T> type = builder.build();