diff options
author | Adam <Adam@anope.org> | 2013-07-08 15:48:37 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-08 15:48:37 -0400 |
commit | b103d16eb1a9182715b808d913f964abd9f783be (patch) | |
tree | 7b770a89a95c8672e79bbfed06aae1d84ea2975c /src/nickcore.cpp | |
parent | e3b6ae3649fdec00890efb0dea6382651452d869 (diff) |
Fix loading some older compat flags and showing noexpire on /ns info
Diffstat (limited to 'src/nickcore.cpp')
-rw-r--r-- | src/nickcore.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nickcore.cpp b/src/nickcore.cpp index 9d032cacb..57d7ad41d 100644 --- a/src/nickcore.cpp +++ b/src/nickcore.cpp @@ -122,7 +122,7 @@ Serializable* NickCore::Unserialize(Serializable *obj, Serialize::Data &data) if (b) nc->Extend<bool>("NS_PRIVATE"); b = false; - data["exensible:AUTOOP"] >> b; + data["extensible:AUTOOP"] >> b; if (b) nc->Extend<bool>("AUTOOP"); b = false; @@ -142,10 +142,6 @@ Serializable* NickCore::Unserialize(Serializable *obj, Serialize::Data &data) if (b) nc->Extend<bool>("MEMO_SIGNON"); b = false; - data["extensible:NO_EXPIRE"] >> b; - if (b) - nc->Extend<bool>("NO_EXPIRE"); - b = false; data["extensible:KILLPROTECT"] >> b; if (b) nc->Extend<bool>("KILLPROTECT"); |