3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Remove debug console.log()s

This commit is contained in:
Dragory 2021-02-13 17:42:41 +02:00
parent ecb9fd43f8
commit 39448a4213
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -220,12 +220,10 @@ export const AutomodPlugin = zeppelinGuildPlugin<AutomodPluginType>()("automod",
const countersPlugin = pluginData.getPlugin(CountersPlugin);
pluginData.state.onCounterTrigger = (name, condition, channelId, userId) => {
console.log("trigger", name, condition, channelId, userId);
runAutomodOnCounterTrigger(pluginData, name, condition, channelId, userId, false);
};
pluginData.state.onCounterReverseTrigger = (name, condition, channelId, userId) => {
console.log("reverseTrigger", name, condition, channelId, userId);
runAutomodOnCounterTrigger(pluginData, name, condition, channelId, userId, true);
};