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
@@ -267,7 +267,7 @@ public class FabuPlayer : ModPlayer
else if (activated16)
{
SoundEngine.PlaySound(SoundID.Item4);
CombatText.NewText(Player.Hitbox, new Color(210, 210, 90), "Absorbed a soul!",;
CombatText.NewText(Player.Hitbox, new Color(210, 210, 90), "Absorbed a soul!");
activated16 = false;
}
if (!Player.HasBuff(ModContent.BuffType<Buffs.ShimadaSword.Stacks.EnrichmentTwo>()))
+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;
}