This commit is contained in:
FatherToast 2022-07-01 16:27:54 -05:00
parent ff3fbf5cae
commit ddc213a69a

View file

@ -2,9 +2,10 @@ package fathertoast.specialmobs.common.entity.projectile;
import net.minecraft.entity.Entity; import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityType; import net.minecraft.entity.EntityType;
import net.minecraft.entity.projectile.ThrowableEntity;
import net.minecraft.world.World; import net.minecraft.world.World;
public abstract class BugSpitEntity extends Entity { public abstract class BugSpitEntity extends ThrowableEntity {
public BugSpitEntity( EntityType<? extends BugSpitEntity> entityType, World world ) { public BugSpitEntity( EntityType<? extends BugSpitEntity> entityType, World world ) {
super( entityType, world ); super( entityType, world );