Skip to content

Commit

Permalink
Merge pull request #2 from miss-architect/remove-print
Browse files Browse the repository at this point in the history
Remove a print added for crapy debug
  • Loading branch information
miss-architect authored Sep 1, 2016
2 parents 889fa1e + 05e9a5a commit 5b91da7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion source/SetsTracker.mc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class SetsTracker {
//! Returns true is the given player won the current set
//! @param player PLAYER_1 or PLAYER_2
function didPlayerWin(player) {
System.println(sets[currentSet][player] + " - " + sets[currentSet][1 - player]);
return ((sets[currentSet][player] >= MAX_SCORE) &&
(sets[currentSet][player] - sets[currentSet][1 - player] > 1));
}
Expand Down

0 comments on commit 5b91da7

Please sign in to comment.