diff options
| author | acdenisSK <[email protected]> | 2017-07-08 22:44:52 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-08 22:44:52 +0200 |
| commit | 8a333290365f1304ad84a8e8f17c0d60728241c2 (patch) | |
| tree | f01b681c747e2d3477e1209c22c0827c0df4dac6 /src | |
| parent | Implement attaching reasons to bans (diff) | |
| download | serenity-8a333290365f1304ad84a8e8f17c0d60728241c2.tar.xz serenity-8a333290365f1304ad84a8e8f17c0d60728241c2.zip | |
Remove the note from the comment on `reason`
Audit log works and does give a reason, so this note is just false info
Diffstat (limited to 'src')
| -rw-r--r-- | src/model/guild/mod.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/model/guild/mod.rs b/src/model/guild/mod.rs index 5c664f7..8270c94 100644 --- a/src/model/guild/mod.rs +++ b/src/model/guild/mod.rs @@ -33,9 +33,6 @@ use ::constants::LARGE_THRESHOLD; #[derive(Clone, Debug, Deserialize)] pub struct Ban { /// The reason given for this ban. - /// - /// **Note**: Until the Audit Log feature is completed by Discord, this will - /// always be `None`. pub reason: Option<String>, /// The user that was banned. pub user: User, |