Skip to content

Commit

Permalink
Inaccesible Dreamshiel removed from Completion
Browse files Browse the repository at this point in the history
  • Loading branch information
ToboterXP committed Jul 30, 2022
1 parent 16a8e18 commit 799f02e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GameCompletion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static void CalculateCompletion(On.PlayerData.orig_CountGameCompletion or

if (!Enabled) return;

int charmCount = self.GetInt("charmsOwned"); //max 19
int charmCount = self.GetInt("charmsOwned"); //max 18

int nailUpgrades = self.GetInt("nailSmithUpgrades"); // max 3

Expand Down Expand Up @@ -56,7 +56,7 @@ public static void CalculateCompletion(On.PlayerData.orig_CountGameCompletion or
int masks = self.GetInt("maxHealth") - 5; //max 2
int vessels = self.GetInt("MPReserveMax") / 33; //max 1

float percentage = 3 * charmCount + 1 * nailUpgrades + 2 * charmNotches + 2 * spells + 2 * mainUpgrades + 2 * dreamers + 2 * masks + 2 * vessels;
float percentage = 3 * charmCount + 2 * nailUpgrades + 2 * charmNotches + 2 * spells + 2 * mainUpgrades + 2 * dreamers + 2 * masks + 2 * vessels;

if (percentage > 100) percentage = 100;

Expand Down
2 changes: 1 addition & 1 deletion HKSecondQuest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public HKSecondQuest() : base("The Glimmering Realm")

public override string GetVersion()
{
return "v1.1.2.0";
return "v1.1.3.0";
}

public void SetEnabled(bool enabled)
Expand Down
1 change: 0 additions & 1 deletion Maps/PlacedCharms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ Dream Wielder 30
Grubsong 3
Dashmaster 31
Carefree Melody 40N
Dreamshield

Don't include Flukenest without adding Flukehermit dialog

0 comments on commit 799f02e

Please sign in to comment.