diff options
| author | acdenisSK <[email protected]> | 2017-07-27 06:42:48 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-27 07:30:23 +0200 |
| commit | 550030264952f0e0043b63f4582bb817ef8bbf37 (patch) | |
| tree | b921e2f78fd603a5ca671623083a32806fd16090 /src/constants.rs | |
| parent | Use a consistent indentation style (diff) | |
| download | serenity-550030264952f0e0043b63f4582bb817ef8bbf37.tar.xz serenity-550030264952f0e0043b63f4582bb817ef8bbf37.zip | |
rustfmt
Diffstat (limited to 'src/constants.rs')
| -rw-r--r-- | src/constants.rs | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/src/constants.rs b/src/constants.rs index b957d1d..91aef17 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -12,31 +12,33 @@ pub const MESSAGE_CODE_LIMIT: u16 = 2000; /// The [UserAgent] sent along with every request. /// /// [UserAgent]: ../hyper/header/struct.UserAgent.html -pub const USER_AGENT: &'static str = concat!("DiscordBot (https://github.com/zeyla/serenity, ", env!("CARGO_PKG_VERSION"), ")"); +pub const USER_AGENT: &'static str = concat!("DiscordBot (https://github.com/zeyla/serenity, ", + env!("CARGO_PKG_VERSION"), + ")"); /// List of messages Discord shows on member join. pub static JOIN_MESSAGES: &'static [&'static str] = &[ - "$user just joined the server - glhf!", - "$user just joined. Everyone, look busy!", - "$user just joined. Can I get a heal?", - "$user joined your party.", - "$user joined. You must construct additional pylons.", - "Ermagherd. $user is here.", - "Welcome, $user. Stay awhile and listen.", - "Welcome, $user. We were expecting you ( ͡° ͜ʖ ͡°)", - "Welcome, $user. We hope you brought pizza.", - "Welcome $user. Leave your weapons by the door.", - "A wild $user appeared.", - "Swoooosh. $user just landed.", - "Brace yourselves. $user just joined the server.", - "$user just joined. Hide your bananas.", - "$user just arrived. Seems OP - please nerf.", - "$user just slid into the server.", - "A $user has spawned in the server.", - "Big $user showed up!", - "Where’s $user? In the server!", - "$user hopped into the server. Kangaroo!!", - "$user just showed up. Hold my beer." + "$user just joined the server - glhf!", + "$user just joined. Everyone, look busy!", + "$user just joined. Can I get a heal?", + "$user joined your party.", + "$user joined. You must construct additional pylons.", + "Ermagherd. $user is here.", + "Welcome, $user. Stay awhile and listen.", + "Welcome, $user. We were expecting you ( ͡° ͜ʖ ͡°)", + "Welcome, $user. We hope you brought pizza.", + "Welcome $user. Leave your weapons by the door.", + "A wild $user appeared.", + "Swoooosh. $user just landed.", + "Brace yourselves. $user just joined the server.", + "$user just joined. Hide your bananas.", + "$user just arrived. Seems OP - please nerf.", + "$user just slid into the server.", + "A $user has spawned in the server.", + "Big $user showed up!", + "Where’s $user? In the server!", + "$user hopped into the server. Kangaroo!!", + "$user just showed up. Hold my beer.", ]; enum_number!( |