diff options
Diffstat (limited to 'include/xline.h')
-rw-r--r-- | include/xline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xline.h b/include/xline.h index 05ddbe2d3..cc4a98d66 100644 --- a/include/xline.h +++ b/include/xline.h @@ -32,8 +32,8 @@ class CoreExport XLine : public Serialize::Object friend class XLineType; - Anope::string type, mask, by, reason, id; - time_t created = 0, expires = 0; + Serialize::Storage<Anope::string> type, mask, by, reason, id; + Serialize::Storage<time_t> created, expires; public: static constexpr const char *const NAME = "xline"; |