Skip to content
This repository has been archived by the owner on Feb 5, 2018. It is now read-only.

Commit

Permalink
Fix the overall solve rate display not correctly being calculated.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbash1987 committed Mar 30, 2017
1 parent 5ade580 commit 8c6ba1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Editor/Resources/ModConfig.asset
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ MonoBehaviour:
m_EditorClassIdentifier:
id: TwitchPlays
title: Twitch Plays
version: v0.9.0
version: v0.9.2
outputFolder: C:\Program Files (x86)\Steam\steamapps\common\Keep Talking and Nobody
Explodes\mods
2 changes: 1 addition & 1 deletion Assets/Scripts/UI/TwitchLeaderboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private void Start()
}
else
{
totalSolveRate = solveCount / strikeCount;
totalSolveRate = ((float)solveCount) / strikeCount;
}

totalBombCountText.text = bombCount.ToString();
Expand Down

0 comments on commit 8c6ba1f

Please sign in to comment.