Skip to content

Commit

Permalink
decreased the hitbox size for shriek worms
Browse files Browse the repository at this point in the history
  • Loading branch information
NewJumper committed Jul 31, 2023
1 parent 7b0d826 commit e34492e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ShriekWormRenderer extends MobRenderer<ShriekWorm, ShriekWormModel>
private static final ResourceLocation TEXTURE = new ResourceLocation(DeeperDarker.MOD_ID, "textures/entity/shriek_worm.png");

public ShriekWormRenderer(EntityRendererProvider.Context pContext) {
super(pContext, new ShriekWormModel(pContext.bakeLayer(MODEL)), 1.4f);
super(pContext, new ShriekWormModel(pContext.bakeLayer(MODEL)), 1.2f);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public class DDEntities {
public static final RegistryObject<EntityType<SculkLeech>> SCULK_LEECH = ENTITIES.register("sculk_leech", () -> EntityType.Builder.of(SculkLeech::new, MobCategory.MONSTER).sized(0.42f, 0.2f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "sculk_leech").toString()));
public static final RegistryObject<EntityType<SculkSnapper>> SCULK_SNAPPER = ENTITIES.register("sculk_snapper", () -> EntityType.Builder.of(SculkSnapper::new, MobCategory.MONSTER).sized(0.65f, 0.65f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "sculk_snapper").toString()));
public static final RegistryObject<EntityType<Shattered>> SHATTERED = ENTITIES.register("shattered", () -> EntityType.Builder.of(Shattered::new, MobCategory.MONSTER).sized(0.8f, 2.125f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "shattered").toString()));
public static final RegistryObject<EntityType<ShriekWorm>> SHRIEK_WORM = ENTITIES.register("shriek_worm", () -> EntityType.Builder.of(ShriekWorm::new, MobCategory.MONSTER).sized(1.3f, 5.7f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "shriek_worm").toString()));
public static final RegistryObject<EntityType<ShriekWorm>> SHRIEK_WORM = ENTITIES.register("shriek_worm", () -> EntityType.Builder.of(ShriekWorm::new, MobCategory.MONSTER).sized(1f, 5.7f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "shriek_worm").toString()));
public static final RegistryObject<EntityType<Stalker>> STALKER = ENTITIES.register("stalker", () -> EntityType.Builder.of(Stalker::new, MobCategory.MONSTER).sized(1f, 4.4f).clientTrackingRange(10).build(new ResourceLocation(DeeperDarker.MOD_ID, "shriek_worm").toString()));
}

0 comments on commit e34492e

Please sign in to comment.