From 7b7fa07adbd350eec03476fbfb8654efe4f338b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=B0Cl=CE=B1shG=C3=B8ne=E2=9C=B0?= <100314078+ClashGone@users.noreply.github.com> Date: Fri, 16 Jan 2026 23:41:31 +0000 Subject: [PATCH 1/2] Renamed "chief map analyst" to "map manager" to avoid setflag conflict --- src/ranks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, From 19d3d243eec3d93d9b307bf11877e8255f291d80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 23:42:26 +0000 Subject: [PATCH 2/2] Automated TypeScript compile / lint --- build/scripts/ranks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }());