summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-01-27 10:50:55 -0500
committerAdam <Adam@anope.org>2013-01-27 10:50:55 -0500
commit98ccbe2b06cdf8934df05ffc7986f72351fa0e27 (patch)
tree8ec8d5fd14d8d0259eca98f198bfc976c1e744ea /src
parent5ae100fea231a9fc316942b18be876773be3e679 (diff)
Old botserv flags need BS_ prepended to them
Diffstat (limited to 'src')
-rw-r--r--src/regchannel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regchannel.cpp b/src/regchannel.cpp
index 38fe73ff9..ab9caf27d 100644
--- a/src/regchannel.cpp
+++ b/src/regchannel.cpp
@@ -493,7 +493,7 @@ Serializable* ChannelInfo::Unserialize(Serializable *obj, Serialize::Data &data)
ci->ExtendMetadata(tok);
spacesepstream sep2(sbotflags);
while (sep2.GetToken(tok))
- ci->ExtendMetadata(tok);
+ ci->ExtendMetadata("BS_" + tok);
/* End compat */
return ci;