diff options
Diffstat (limited to 'include/modules')
-rw-r--r-- | include/modules/ctctags.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/modules/ctctags.h b/include/modules/ctctags.h index f1af43c09..ad45d12b1 100644 --- a/include/modules/ctctags.h +++ b/include/modules/ctctags.h @@ -85,6 +85,9 @@ class CTCTags::TagMessageDetails /* Whether to send the original tags 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; @@ -97,6 +100,7 @@ class CTCTags::TagMessageDetails TagMessageDetails(const ClientProtocol::TagMap& tags) : echo(true) , echo_original(false) + , update_idle(true) , tags_in(tags) { } |