diff options
| author | Fuwn <[email protected]> | 2025-10-15 18:05:24 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-15 18:05:24 -0700 |
| commit | dc76b6705f065aae46d11c8d7647efd5e70b26f4 (patch) | |
| tree | 5735e7eeee5534d0691084bfd4af3e4e5019e445 | |
| parent | feat(gateway:commands): Add gate toggling command (diff) | |
| download | umabotdiscord-dc76b6705f065aae46d11c8d7647efd5e70b26f4.tar.xz umabotdiscord-dc76b6705f065aae46d11c8d7647efd5e70b26f4.zip | |
feat(gateway:messageCreate): Refine welcome constants
| -rw-r--r-- | packages/gateway/src/listeners/messageCreate/constants.ts | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/packages/gateway/src/listeners/messageCreate/constants.ts b/packages/gateway/src/listeners/messageCreate/constants.ts index 05f1f59..aa93188 100644 --- a/packages/gateway/src/listeners/messageCreate/constants.ts +++ b/packages/gateway/src/listeners/messageCreate/constants.ts @@ -147,16 +147,18 @@ export const PERSONA_REPLY_SECOND_PARTS = [ ]; export const WELCOME_GREETINGS = [ - "Welcome to the track, {username}!", "Hey there, {username}!", "Hello, {username}!", - "Welcome aboard, {username}!", "Hi, {username}!", "Hey, {username}!", "Hello there, {username}!", - "Welcome, {username}!", - "Hi, {username}!", - "Hey, {username}!", + "Hi there, {username}!", + "Good to see you, {username}!", + "Nice to meet you, {username}!", + "Great to have you, {username}!", + "Pleasure to see you, {username}!", + "Howdy, {username}!", + "Greetings, {username}!", ]; export const WELCOME_MIDDLES = [ @@ -196,4 +198,5 @@ export const WELCOME_ENDINGS = [ "Time to show your racing spirit! 💪", "Welcome to our training grounds! 🏃♀️", "Welcome to the starting line! 🚀", + "Welcome to the track! 🏁", ]; |