diff options
author | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
commit | de5c8c0d386375c46d812c5843a5bb5a850ee865 (patch) | |
tree | d2e7834cbe85a56505ee63d22609c79b0ac5af55 /modules/database/db_old.cpp | |
parent | 8e011bbb783df2c646f479e7b02989f9165ed7c1 (diff) |
Fix some issues with suspend
Diffstat (limited to 'modules/database/db_old.cpp')
-rw-r--r-- | modules/database/db_old.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/database/db_old.cpp b/modules/database/db_old.cpp index 8ce79f708..d90424d21 100644 --- a/modules/database/db_old.cpp +++ b/modules/database/db_old.cpp @@ -484,7 +484,7 @@ static void LoadNicks() if (u32 & OLD_NI_HIDE_STATUS) nc->Extend<bool>("HIDE_STATUS"); if (u32 & OLD_NI_SUSPENDED) - nc->Extend<bool>("SUSPENDED"); + nc->Extend<bool>("NS_SUSPENDED"); if (!(u32 & OLD_NI_AUTOOP)) nc->Extend<bool>("AUTOOP"); @@ -749,7 +749,7 @@ static void LoadChannels() if (tmpu32 & OLD_CI_SIGNKICK_LEVEL) ci->Extend<bool>("SIGNKICK_LEVEL"); if (tmpu32 & OLD_CI_SUSPENDED) - ci->Extend<bool>("SUSPENDED"); + ci->Extend<bool>("CS_SUSPENDED"); READ(read_string(buffer, f)); READ(read_string(buffer, f)); |