diff --git a/src/main/java/fathertoast/specialmobs/common/entity/projectile/BugSpitEntity.java b/src/main/java/fathertoast/specialmobs/common/entity/projectile/BugSpitEntity.java index 7ca4d83..df46c2a 100644 --- a/src/main/java/fathertoast/specialmobs/common/entity/projectile/BugSpitEntity.java +++ b/src/main/java/fathertoast/specialmobs/common/entity/projectile/BugSpitEntity.java @@ -2,9 +2,10 @@ package fathertoast.specialmobs.common.entity.projectile; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityType; +import net.minecraft.entity.projectile.ThrowableEntity; import net.minecraft.world.World; -public abstract class BugSpitEntity extends Entity { +public abstract class BugSpitEntity extends ThrowableEntity { public BugSpitEntity( EntityType entityType, World world ) { super( entityType, world );