Skip to content

Commit

Permalink
userCount was console logged 3 times in place of onlineCount and code…
Browse files Browse the repository at this point in the history
…rCount
  • Loading branch information
CodeSpent committed Sep 29, 2018
1 parent 1566d68 commit 2128fcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ setInterval(function() {

// Log counts for debugging
console.log("Total Users: " + userCount);
console.log("Online Users: " + userCount);
console.log("Coders: " + userCount);
console.log("Online Users: " + onlineCount);
console.log("Coders: " + coderCount);

// Set channel names
totalUsers.setName("Total Users: " + userCount)
Expand Down

0 comments on commit 2128fcc

Please sign in to comment.