From 98ccbe2b06cdf8934df05ffc7986f72351fa0e27 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 27 Jan 2013 10:50:55 -0500 Subject: [PATCH] Old botserv flags need BS_ prepended to them --- src/regchannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;