summaryrefslogtreecommitdiff
path: root/include/bots.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bots.h')
-rw-r--r--include/bots.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/bots.h b/include/bots.h
index 0fa35e8a1..928107ef3 100644
--- a/include/bots.h
+++ b/include/bots.h
@@ -133,9 +133,9 @@ class BotInfo : public Serialize::Object
{
friend class BotInfoType;
- Anope::string nick, user, host, realname;
- time_t created = 0;
- bool operonly = false;
+ Serialize::Storage<Anope::string> nick, user, host, realname;
+ Serialize::Storage<time_t> created;
+ Serialize::Storage<bool> operonly;
public:
static constexpr const char *const NAME = "botinfo";