Skip to content
This repository has been archived by the owner on Jan 24, 2019. It is now read-only.

Commit

Permalink
fixed boss bools not resetting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jofairden committed Oct 7, 2017
1 parent ed9d148 commit 64cc823
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TremorWorld.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ private void Init()
if (downedBoss == null)
{
downedBoss = new Dictionary<Boss, bool>();
foreach (Boss boss in Enum.GetValues(typeof(Boss)).Cast<Boss>())
{
downedBoss[boss] = false;
}
}
foreach (Boss boss in Enum.GetValues(typeof(Boss)).Cast<Boss>())
{
downedBoss[boss] = false;
}
}

Expand Down

0 comments on commit 64cc823

Please sign in to comment.