-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vliegenier04
committed
Dec 25, 2024
1 parent
4823607
commit 5593e84
Showing
4 changed files
with
213 additions
and
152 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default { | ||
name: 'chat:guildLog', | ||
runOnce: false, | ||
run: async (bot, ...fullMatches) => { | ||
console.log(`[DEBUG] A guild log event has been triggered!`); | ||
|
||
const _fullMatch = fullMatches.filter(match => match !== undefined).join('\n'); | ||
|
||
console.log(`[DEBUG] Full Match: ${_fullMatch}`); | ||
|
||
} | ||
} as Event; |
Oops, something went wrong.