DoYouEvenCookie
Terrarian
I am trying to make a gun that turns any bullet into a custom shot, not just musket balls, and I tried
but there was an error that said
'no suitable method found to override'
and referred to the first line of code above
help pls
Code:
public override bool Shoot(Player player, ref Vector2 position, ref float speedX, ref float speedY, ref int type, ref int damage, ref int knockback)
{
if (type == ProjectileID.Bullet)
{
type = mod.ProjectileType("Blast");
}
return true;
}
but there was an error that said
'no suitable method found to override'
and referred to the first line of code above
help pls