Added CM to version number in BotBar (#471)

This commit is contained in:
Daniel van Noord
2020-12-22 23:13:12 +01:00
parent 56d23aae22
commit 2f430e82e1
2 changed files with 2 additions and 2 deletions

View File

@@ -1479,7 +1479,7 @@ CM.Disp.CreateBotBar = function() {
}
var type = tbody.appendChild(document.createElement('tr'));
type.style.fontWeight = 'bold';
type.appendChild(firstCol(CM.VersionMajor + '.' + CM.VersionMinor, CM.Disp.colorYellow));
type.appendChild(firstCol('CM ' + CM.VersionMajor + '.' + CM.VersionMinor, CM.Disp.colorYellow));
var bonus = tbody.appendChild(document.createElement('tr'));
bonus.appendChild(firstCol('Bonus Income', CM.Disp.colorBlue));
var pp = tbody.appendChild(document.createElement('tr'));