mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
Fix bug
This commit is contained in:
parent
1480e3d2a4
commit
97ff5cae05
|
@ -44,7 +44,7 @@ export default class ServerModule implements IModule {
|
|||
});
|
||||
|
||||
setInterval(() => {
|
||||
this.statsLogs.push(this.recentStat);
|
||||
this.statsLogs.unshift(this.recentStat);
|
||||
if (this.statsLogs.length > 60) this.statsLogs.pop();
|
||||
}, 1000);
|
||||
|
||||
|
|
Loading…
Reference in a new issue