unique IP heartbeats
This commit is contained in:
parent
11700fe211
commit
41a19c26a6
|
@ -71,7 +71,7 @@ export class Server {
|
||||||
"&public=True" +
|
"&public=True" +
|
||||||
"&software=Cla66ic" +
|
"&software=Cla66ic" +
|
||||||
`&version=7&salt=${config.hash}` +
|
`&version=7&salt=${config.hash}` +
|
||||||
`&users=${this.players.length}`,
|
`&users=${[...new Set(this.players.map(obj => obj.ip))].length}`
|
||||||
);
|
);
|
||||||
}, 10000);
|
}, 10000);
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,7 @@ environment variables
|
||||||
2. massive performance issues, running more than 100 something accounts makes the server instead insane amounts of cpu (most likely multithreading needed)
|
2. massive performance issues, running more than 100 something accounts makes the server instead insane amounts of cpu (most likely multithreading needed)
|
||||||
3. no cpe support! i want to get all of the above issues fixed before
|
3. no cpe support! i want to get all of the above issues fixed before
|
||||||
implementing CPE support
|
implementing CPE support
|
||||||
4. no IP cooldown connections (no block cooldown either), no anticheat, no unique IP heartbeats
|
4. no IP cooldown connections (no block cooldown either), no anticheat
|
||||||
5. proper rank support (implemented as plugin)
|
5. proper rank support (implemented as plugin)
|
||||||
6. no discord bridge (implemented as plugin)
|
6. no discord bridge (implemented as plugin)
|
||||||
7. no cla66ic/plugins repository
|
7. no cla66ic/plugins repository
|
||||||
|
|
Loading…
Reference in a new issue