We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 936f51e commit 7318078Copy full SHA for 7318078
1 file changed
tools/RandomStats.js
@@ -5,7 +5,8 @@ export default class RandomStats {
5
constructor(n_entries = RandomStats.N_ENTRIES, n_stats = RandomStats.N_STATS){
6
this.scores = { entries: [], scores: {} }
7
8
- for(let i = 0; i < n_entries; i++){
+ this.scores.entries.push("#server")
9
+ for(let i = 1; i < n_entries; i++){
10
this.scores.entries.push(RandomStats.intToName(i, 3))
11
}
12
0 commit comments