Skip to content

Commit

Permalink
fix: wild slime hitbox (#1226)
Browse files Browse the repository at this point in the history
Closes #1225
  • Loading branch information
Eqis-Edu authored Oct 7, 2024
1 parent d7ee57f commit 12f7783
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public class OccultismEntities {
.build(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "wild_bogged").toString()));
public static final Lazy<EntityType<WildSlimeEntity>> WILD_SLIME_TYPE =
Lazy.of(() -> EntityType.Builder.of(WildSlimeEntity::new, MobCategory.MONSTER)
.sized(1.0F, 1.0F)
.sized(0.5F, 0.5F)
.clientTrackingRange(32)
.build(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "wild_slime").toString()));
public static final Lazy<EntityType<WildHuskEntity>> WILD_HUSK_TYPE =
Expand Down

0 comments on commit 12f7783

Please sign in to comment.