support managed APIs
This commit is contained in:
parent
a0ed1762f5
commit
80daa79d7e
1 changed files with 4 additions and 10 deletions
14
index.ts
14
index.ts
|
@ -1,4 +1,3 @@
|
|||
import { addPreSendListener, removePreSendListener } from "@api/MessageEvents";
|
||||
import { definePluginSettings, Settings } from "@api/Settings";
|
||||
import { Devs } from "@utils/constants";
|
||||
import definePlugin, { OptionType, PluginNative } from "@utils/types";
|
||||
|
@ -39,14 +38,9 @@ export default definePlugin({
|
|||
type: OptionType.STRING
|
||||
}
|
||||
}),
|
||||
start() {
|
||||
this.preSend = addPreSendListener(async (c, msg) => {
|
||||
if (Settings.plugins.SentFromMyUname.channelWhitelist && !Settings.plugins.SentFromMyUname.channelWhitelist.includes(c)) return;
|
||||
if (msg.content.startsWith("nouname ")) { msg.content = msg.content.replace("nouname ", ""); return; }
|
||||
msg.content += `\n\nSent from my ${await getWhateverShouldBeSentFromMy()}`;
|
||||
});
|
||||
},
|
||||
stop() {
|
||||
removePreSendListener(this.preSend);
|
||||
onBeforeMessageSend: async (c, msg) => {
|
||||
if (Settings.plugins.SentFromMyUname.channelWhitelist && !Settings.plugins.SentFromMyUname.channelWhitelist.includes(c)) return;
|
||||
if (msg.content.startsWith("nouname ")) { msg.content = msg.content.replace("nouname ", ""); return; }
|
||||
msg.content += `\n\nSent from my ${await getWhateverShouldBeSentFromMy()}`;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue