summaryrefslogtreecommitdiff
path: root/include/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/message.h')
-rw-r--r--include/message.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/message.h b/include/message.h
index 3a7c7018e..eae27ff94 100644
--- a/include/message.h
+++ b/include/message.h
@@ -39,6 +39,9 @@ class CoreExport MessageDetails
/* Whether to send the original message back to clients with echo-message support. */
bool echo_original;
+ /** Whether to update the source user's idle time. */
+ bool update_idle;
+
/** The users who are exempted from receiving this message. */
CUList exemptions;
@@ -78,6 +81,7 @@ class CoreExport MessageDetails
MessageDetails(MessageType mt, const std::string& msg, const ClientProtocol::TagMap& tags)
: echo(true)
, echo_original(false)
+ , update_idle(true)
, original_text(msg)
, tags_in(tags)
, text(msg)