diff --git a/Plugins/OwnerTag/OwnerTag.plugin.js b/Plugins/OwnerTag/OwnerTag.plugin.js index 995a87109f..9355c76559 100644 --- a/Plugins/OwnerTag/OwnerTag.plugin.js +++ b/Plugins/OwnerTag/OwnerTag.plugin.js @@ -3,7 +3,7 @@ class OwnerTag { getName () {return "OwnerTag";} - getVersion () {return "1.1.2";} + getVersion () {return "1.1.3";} getAuthor () {return "DevilBro";} @@ -11,7 +11,7 @@ class OwnerTag { initConstructor () { this.changelog = { - "added":[["Native Crown Option","Added an option to disable the hiding of the native crown, allowing you to have the written owner tag and the crown"]] + "improved":[["Crown","Changed the crown to the new crown icon"]] }; this.patchModules = { @@ -200,7 +200,7 @@ class OwnerTag { wrapper.insertBefore(tag, wrapper.querySelector(".TRE-tag,svg[name=MobileDevice]")); } else { - let crown = BDFDB.htmlToElement(``); + let crown = BDFDB.htmlToElement(``); crown.addEventListener("mouseenter", () => { BDFDB.createTooltip(isowner ? (channel.type == 3 ? BDFDB.LanguageStrings.GROUP_OWNER : BDFDB.LanguageStrings.GUILD_OWNER) : BDFDB.LanguageStrings.ADMINISTRATOR, crown, {type: "top"}); });