This commit is contained in:
syuilo 2018-08-13 11:04:19 +09:00
parent 1480e3d2a4
commit 97ff5cae05

View file

@ -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);