diff --git a/src/Settings/GeneralSettings.cs b/src/Settings/GeneralSettings.cs index b8d7a51..6d22db3 100644 --- a/src/Settings/GeneralSettings.cs +++ b/src/Settings/GeneralSettings.cs @@ -200,7 +200,7 @@ namespace Milimoe.RainBOT.Settings list = OSMCoreGroup; break; } - string msg = list.Count > 0 ? "权限组" + group + "拥有一下成员:" + "\r\n" + string.Join("\r\n", list) : "此权限组不存在或没有任何成员。"; + string msg = list.Count > 0 ? "权限组" + group + "拥有以下成员:" + "\r\n" + string.Join("\r\n", list) : "此权限组不存在或没有任何成员。"; _ = isgroup ? Bot.SendGroupMessage(target, "显示列表成员", msg) : Bot.SendFriendMessage(target, "显示列表成员", msg); } } diff --git a/src/Settings/Ignore.cs b/src/Settings/Ignore.cs index f2cebeb..2a9fc59 100644 --- a/src/Settings/Ignore.cs +++ b/src/Settings/Ignore.cs @@ -92,7 +92,7 @@ namespace Milimoe.RainBOT.Settings list = QQGroupIgnore.Select(x => x.ToString()).ToList(); break; } - string msg = list.Count > 0 ? "列表" + group + "拥有一下成员:" + "\r\n" + string.Join("\r\n", list) : "此列表不存在或没有任何成员。"; + string msg = list.Count > 0 ? "列表" + group + "拥有以下成员:" + "\r\n" + string.Join("\r\n", list) : "此列表不存在或没有任何成员。"; _ = isgroup ? Bot.SendGroupMessage(target, "显示列表成员", msg) : Bot.SendFriendMessage(target, "显示列表成员", msg); } } diff --git a/src/Settings/SayNo.cs b/src/Settings/SayNo.cs index 4cd435d..d2e3006 100644 --- a/src/Settings/SayNo.cs +++ b/src/Settings/SayNo.cs @@ -232,11 +232,11 @@ namespace Milimoe.RainBOT.Settings string msg; if (islist) { - msg = list.Count > 0 ? "列表" + part + "拥有一下成员:" + "\r\n"+ string.Join("\r\n", list) : "此列表不存在或没有任何成员。"; + msg = list.Count > 0 ? "列表" + part + "拥有以下成员:" + "\r\n"+ string.Join("\r\n", list) : "此列表不存在或没有任何成员。"; } else { - msg = set.Count > 0 ? "列表" + part + "拥有一下成员:" + "\r\n" + string.Join("\r\n", set) : "此列表不存在或没有任何成员。"; + msg = set.Count > 0 ? "列表" + part + "拥有以下成员:" + "\r\n" + string.Join("\r\n", set) : "此列表不存在或没有任何成员。"; } _ = isgroup ? Bot.SendGroupMessage(target, "显示列表成员", msg) : Bot.SendFriendMessage(target, "显示列表成员", msg); }