diff --git a/src/plugins/moreUserTags.ts b/src/plugins/moreUserTags.ts index e45e30a43..3fa0aa1bf 100644 --- a/src/plugins/moreUserTags.ts +++ b/src/plugins/moreUserTags.ts @@ -118,7 +118,7 @@ const settings = definePluginSettings({ export default definePlugin({ name: "MoreUserTags", description: "Adds tags for webhooks and moderative roles (owner, admin, etc.)", - authors: [Devs.Cyn, Devs.TheSun], + authors: [Devs.Cyn, Devs.TheSun, Devs.RyanCaoDev], settings, patches: [ // add tags to the tag list @@ -140,6 +140,11 @@ export default definePlugin({ { match: /(\i)=(\i)===\i\.ORIGINAL_POSTER/, replace: "$1=$self.isOPTag($2)" + }, + // add HTML data attributes (for easier theming) + { + match: /children:\[(?=\i,\(0,\i\.jsx\)\("span",{className:\i\(\)\.botText,children:(\i)}\)\])/, + replace: "'data-tag':$1.toLowerCase(),children:[" } ], }, diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 99da615f5..6a939c946 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -258,8 +258,12 @@ export const Devs = /* #__PURE__*/ Object.freeze({ name: "pylix", id: 492949202121261067n }, + RyanCaoDev: { + name: "RyanCaoDev", + id: 952235800110694471n, + }, Strencher: { name: "Strencher", id: 415849376598982656n - } + }, });