This commit is contained in:
Bryan Ashby 2019-06-10 20:12:17 -06:00
parent 80eb8ad38d
commit d6af9a1caa
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ exports.getModule = class mrcModule extends MenuModule {
userCount : 0,
boardCount : 0,
roomCount : 0,
//latencyMs : 0,
latencyMs : 0,
activityLevel : 0,
activityLevelIndicator : ' ',
};
@ -352,7 +352,7 @@ exports.getModule = class mrcModule extends MenuModule {
if(!Array.isArray(indicators) || indicators.length < level + 1) {
indicators = [ ' ', '░', '▒', '▓' ];
}
return indicators[level].charAt(0);
return indicators[level];
}
setText(mciId, text) {