Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ScalarVector1 committed Jul 14, 2024
1 parent 2cdea63 commit 37e0a65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Content/Bosses/SquidBoss/NPCs.ArenaActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public override void AI()
if ((int)(VisualTimerA * 1 / 0.04f) % 60 == 0)
NPC.netUpdate = true;

var anyoneInside = false;
bool anyoneInside = false;
foreach (Player player in Main.ActivePlayers)
{
if (player.InModBiome<PermafrostTempleBiome>())
Expand Down
2 changes: 1 addition & 1 deletion Content/Items/Misc/Weapons.FiletKnife.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public override void ReceiveExtraAI(NPC npc, BitReader bitReader, BinaryReader b
{
if (npc.type == NPCID.BloodZombie)
{
hasSword = binaryReader.ReadBoolean();
hasSword = binaryReader.ReadBoolean();
}
}

Expand Down

0 comments on commit 37e0a65

Please sign in to comment.