yeah i think that's commit worthy

This commit is contained in:
reisenlol 2026-01-23 00:55:00 -08:00
parent 49cf2f2bb9
commit fada3af715
No known key found for this signature in database
16 changed files with 658 additions and 29 deletions

View file

@ -57,6 +57,7 @@ public class RangedWeapon : Weapon
Projectile newProjectile = Instantiate(projectile, transform.position, Quaternion.identity);
newProjectile.RotateToTarget(target);
newProjectile.damage = damage;
newProjectile.pierceAmount = pierce;
newProjectile.tag = tag;
newProjectile.fromEntity = thisEntity;
}