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

Fixed loading akill reasons

This commit is contained in:
Adam
2012-01-08 19:42:48 -05:00
parent f8245574dc
commit 815e140ecf
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ void XLine::unserialize(serialized_data &data)
time_t expires;
data["expires"] >> expires;
XLine *xl = new XLine(data["mask"].astr(), data["by"].astr(), expires, data["expires"].astr(), data["uid"].astr());
XLine *xl = new XLine(data["mask"].astr(), data["by"].astr(), expires, data["reason"].astr(), data["uid"].astr());
data["created"] >> xl->Created;
xl->manager = xlm;