diff --git a/public/css/game-pane.styl b/public/css/game-pane.styl index 3ec1cbc8e5..053fbc1d43 100644 --- a/public/css/game-pane.styl +++ b/public/css/game-pane.styl @@ -32,7 +32,7 @@ .label-champion background-color: #125BA2 color: white - .label-master + .label-royal background-color: #7313B4 color: white diff --git a/public/js/controllers/groupsCtrl.js b/public/js/controllers/groupsCtrl.js index b270bf3336..04c284c175 100644 --- a/public/js/controllers/groupsCtrl.js +++ b/public/js/controllers/groupsCtrl.js @@ -67,10 +67,10 @@ habitrpg.controller("GroupsCtrl", ['$scope', '$rootScope', 'Groups', '$http', 'A } $scope.nameTagClasses = function(message){ if (message.contributor) { - if (message.contributor.match(/npc/i) || message.contributor.match(/master/i)) { - return 'label-master'; // master + if (message.contributor.match(/npc/i) || message.contributor.match(/royal/i)) { + return 'label-royal'; } else if (message.contributor.match(/champion/i)) { - return 'label-champion'; // champion + return 'label-champion'; } else if (message.contributor.match(/elite/i)) { return 'label-success'; //elite }