diff --git a/build/scripts/ranks.js b/build/scripts/ranks.js index ed7447b1..51052efa 100644 --- a/build/scripts/ranks.js +++ b/build/scripts/ranks.js @@ -86,7 +86,7 @@ var RoleFlag = /** @class */ (function () { RoleFlag.developer = new RoleFlag("developer", "[black]<[#B000FF]\uE80E[]>[]", "Awarded to people who contribute to the server's codebase.", "[#B000FF]", false); RoleFlag.member = new RoleFlag("member", "[black]<[yellow]\uE809[]>[]", "Awarded to our awesome donors who support the server.", "[pink]", false); RoleFlag.illusionist = new RoleFlag("illusionist", "", "Assigned to to individuals who have earned access to enhanced visual effect features.", "[lightgrey]", true); - RoleFlag.chief_map_analyst = new RoleFlag("chief map analyst", "[black]<[#5800FF]\uE833[]>[]", "Assigned to the chief map analyst, who oversees map management.", "[#5800FF]", true); + RoleFlag.map_manager = new RoleFlag("map manager", "[black]<[#5800FF]\uE833[]>[]", "Assigned to the chief map analysts, who oversee map management.", "[#5800FF]", true); RoleFlag.no_effects = new RoleFlag("no_effects", "", "Given to people who have abused the visual effects.", "", true); return RoleFlag; }()); diff --git a/src/ranks.ts b/src/ranks.ts index 8c18f23e..cd63ee37 100644 --- a/src/ranks.ts +++ b/src/ranks.ts @@ -76,7 +76,7 @@ export class RoleFlag { static developer = new RoleFlag("developer", "[black]<[#B000FF]\uE80E[]>[]", "Awarded to people who contribute to the server's codebase.", "[#B000FF]", false); static member = new RoleFlag("member", "[black]<[yellow]\uE809[]>[]", "Awarded to our awesome donors who support the server.", "[pink]", false); static illusionist = new RoleFlag("illusionist", "", "Assigned to to individuals who have earned access to enhanced visual effect features.","[lightgrey]", true); - static chief_map_analyst = new RoleFlag("chief map analyst", "[black]<[#5800FF]\uE833[]>[]", "Assigned to the chief map analyst, who oversees map management.","[#5800FF]", true); + static map_manager = new RoleFlag("map manager", "[black]<[#5800FF]\uE833[]>[]", "Assigned to the chief map analysts, who oversee map management.","[#5800FF]", true); static no_effects = new RoleFlag("no_effects", "", "Given to people who have abused the visual effects.", "", true); constructor( public name:string,