aboutsummaryrefslogtreecommitdiff
path: root/src/events
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2024-08-17 20:22:57 -0700
committerGitHub <[email protected]>2024-08-17 20:22:57 -0700
commite494287d1d4e220c98856ac1c5c3a34231debe7f (patch)
treec0ba123129e229dde3aec762cbcbabbf1120ed85 /src/events
parent62c954943d275d004e1c1a65ba372421f0fad345 (diff)
downloadmuse-e494287d1d4e220c98856ac1c5c3a34231debe7f.tar.xz
muse-e494287d1d4e220c98856ac1c5c3a34231debe7f.zip
Update Docker builds to publish to ghcr.io & update README (#1067)
Diffstat (limited to 'src/events')
-rw-r--r--src/events/guild-create.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events/guild-create.ts b/src/events/guild-create.ts
index 1d60910..c903009 100644
--- a/src/events/guild-create.ts
+++ b/src/events/guild-create.ts
@@ -40,5 +40,5 @@ export default async (guild: Guild): Promise<void> => {
}
const owner = await guild.fetchOwner();
- await owner.send('👋 Hi! Someone (probably you) just invited me to a server you own. By default, I\'m usable by all guild member in all guild channels. To change this, check out the wiki page on permissions: https://github.com/codetheweb/muse/wiki/Configuring-Bot-Permissions.');
+ await owner.send('👋 Hi! Someone (probably you) just invited me to a server you own. By default, I\'m usable by all guild member in all guild channels. To change this, check out the wiki page on permissions: https://github.com/museofficial/muse/wiki/Configuring-Bot-Permissions.');
};