summaryrefslogtreecommitdiff
path: root/modules/commands/ns_ajoin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/commands/ns_ajoin.cpp')
-rw-r--r--modules/commands/ns_ajoin.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/commands/ns_ajoin.cpp b/modules/commands/ns_ajoin.cpp
index 5e2a99aa0..1f578a7cf 100644
--- a/modules/commands/ns_ajoin.cpp
+++ b/modules/commands/ns_ajoin.cpp
@@ -17,7 +17,12 @@ struct AJoinList : std::vector<std::pair<Anope::string, Anope::string> >, Extens
{
NickCore *nc;
- AJoinList(NickCore *n) : Serializable("AJoinList"), nc(n) { }
+ AJoinList(NickCore *n) : nc(n) { }
+
+ Anope::string serialize_name() const
+ {
+ return "AJoinList";
+ }
serialized_data serialize()
{