Skip to content

Commit

Permalink
Remove a print added for crapy debug
Browse files Browse the repository at this point in the history
  • Loading branch information
miss-architect committed Sep 1, 2016
1 parent 889fa1e commit 05e9a5a
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 05e9a5a

Please sign in to comment.