1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 02:36:38 +02:00

Fixed storing mode locks

This commit is contained in:
Adam
2011-11-17 12:46:18 -05:00
parent 5281282a61
commit 69dfc729e9
31 changed files with 196 additions and 124 deletions
+6 -1
View File
@@ -20,7 +20,7 @@ struct EntryMsg : Serializable
Anope::string message;
time_t when;
EntryMsg(ChannelInfo *c, const Anope::string &cname, const Anope::string &cmessage, time_t ct = Anope::CurTime) : Serializable("EntryMsg")
EntryMsg(ChannelInfo *c, const Anope::string &cname, const Anope::string &cmessage, time_t ct = Anope::CurTime)
{
this->ci = c;
@@ -29,6 +29,11 @@ struct EntryMsg : Serializable
this->when = ct;
}
Anope::string serialize_name() const
{
return "EntryMsg";
}
serialized_data serialize()
{
serialized_data data;