Fix two typos.

This commit is contained in:
Big Duckie
2022-07-05 22:32:58 -06:00
parent 099f0a2e50
commit 598f231755
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ public class HellfireBeamProj : ModProjectile
if (Projectile.owner == Main.myPlayer)
{
Projectile.velocity = mousePos - player.Center;
Projectile.velocity.Normalize();s
Projectile.velocity.Normalize();
Projectile.direction = (Main.MouseWorld.X > player.position.X) ? 1 : (-1);
Projectile.netUpdate = true;
}