summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-10 22:55:55 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-10 22:55:55 +0000
commit606aa8f09b64d9b779fe847f7f969b6c456f8343 (patch)
treef9313bbf3c8e639ef48b062fc7505391bba131dd /include
parent255580c5f164b71a6186b42dd9f9650d0defc0a7 (diff)
Fix snomask stacking to only delay (last message repeated) part of the snomask
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11201 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/snomasks.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/snomasks.h b/include/snomasks.h
index 767c785da..742528c06 100644
--- a/include/snomasks.h
+++ b/include/snomasks.h
@@ -23,6 +23,7 @@ class Snomask : public Extensible
char MySnomask;
std::string Description;
std::string LastMessage;
+ bool LastBlocked;
unsigned int Count;
/** Create a new Snomask
@@ -35,7 +36,7 @@ class Snomask : public Extensible
*/
void SendMessage(const std::string &message);
- /** Sends out a pending message
+ /** Sends out the (last message repeated N times) message
*/
void Flush();
};