diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/users.h b/include/users.h index c795ae1a4..9d210931c 100644 --- a/include/users.h +++ b/include/users.h @@ -481,10 +481,6 @@ class CoreExport User : public connection */ void DecrementModes(); - /** Oper-only quit message for this user if non-null - */ - char* operquit; - /** Max channels for this user */ unsigned int MaxChans; @@ -616,6 +612,14 @@ class CoreExport User : public connection */ std::string sendq; + /** Message user will quit with. Not to be set externally. + */ + std::string quitmsg; + + /** Quit message shown to opers - not to be set externally. + */ + std::string operquitmsg; + /** Flood counters - lines received */ unsigned int lines_in; |