From 59693624250eb411265844e42322c05d1825acf1 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 1 Mar 2014 22:41:45 -0500 Subject: When unserializing channels with persist, set their ts=now. If we are supposed to lower it later we will then. --- modules/commands/cs_set.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/cs_set.cpp') diff --git a/modules/commands/cs_set.cpp b/modules/commands/cs_set.cpp index 993dbf8f8..bb8232808 100644 --- a/modules/commands/cs_set.cpp +++ b/modules/commands/cs_set.cpp @@ -1163,7 +1163,7 @@ class CSSet : public Module return; bool created; - Channel *c = Channel::FindOrCreate(ci->name, created, ci->time_registered); + Channel *c = Channel::FindOrCreate(ci->name, created); ChannelMode *cm = ModeManager::FindChannelModeByName("PERM"); if (cm) -- cgit