mirror of
https://github.com/anope/anope.git
synced 2026-07-02 11:46:37 +02:00
Fixed storing mode locks
This commit is contained in:
@@ -18,10 +18,15 @@ struct CSMiscData : Anope::string, ExtensibleItem, Serializable
|
||||
Anope::string name;
|
||||
Anope::string data;
|
||||
|
||||
CSMiscData(ChannelInfo *c, const Anope::string &n, const Anope::string &d) : Serializable("CSMiscData"), ci(c), name(n), data(d)
|
||||
CSMiscData(ChannelInfo *c, const Anope::string &n, const Anope::string &d) : ci(c), name(n), data(d)
|
||||
{
|
||||
}
|
||||
|
||||
Anope::string serialize_name() const
|
||||
{
|
||||
return "CSMiscData";
|
||||
}
|
||||
|
||||
serialized_data serialize()
|
||||
{
|
||||
serialized_data sdata;
|
||||
|
||||
Reference in New Issue
Block a user