Skip to content

Commit 7318078

Browse files
committed
Add #server to random stats tool
1 parent 936f51e commit 7318078

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tools/RandomStats.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ export default class RandomStats {
55
constructor(n_entries = RandomStats.N_ENTRIES, n_stats = RandomStats.N_STATS){
66
this.scores = { entries: [], scores: {} }
77

8-
for(let i = 0; i < n_entries; i++){
8+
this.scores.entries.push("#server")
9+
for(let i = 1; i < n_entries; i++){
910
this.scores.entries.push(RandomStats.intToName(i, 3))
1011
}
1112

0 commit comments

Comments
 (0)