This commit is contained in:
milimoe 2024-06-13 23:51:28 +08:00
parent 4ed0530101
commit f14cbd7b7d
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
2 changed files with 14 additions and 2 deletions

View File

@ -41,6 +41,18 @@ namespace Milimoe.RainBOT.Command
msg += $"\r\n随机反驳不概率{GeneralSettings.PSayNo}%"; msg += $"\r\n随机反驳不概率{GeneralSettings.PSayNo}%";
} }
else msg += "\r\n随机反驳不关闭"; else msg += "\r\n随机反驳不关闭";
if (GeneralSettings.IsCallBrother)
{
msg += "\r\n随机叫哥开启";
msg += $"\r\n随机叫哥概率{GeneralSettings.PCallBrother}%";
}
else msg += "\r\n随机叫哥关闭";
if (GeneralSettings.IsReverseAt)
{
msg += "\r\n反向艾特开启";
msg += $"\r\n反向艾特概率{GeneralSettings.PReverseAt}%";
}
else msg += "\r\n反向艾特关闭";
if (GeneralSettings.IsMute) if (GeneralSettings.IsMute)
{ {
msg += "\r\n禁言抽奖开启"; msg += "\r\n禁言抽奖开启";

View File

@ -3,8 +3,8 @@
public class OSMCore public class OSMCore
{ {
public const string version = "v1.0"; public const string version = "v1.0";
public const string version2 = "Patch4"; public const string version2 = "Patch5";
public const string time = "May 16th, 2024"; public const string time = "Jun. 12th, 2024";
public static string Info => $"OSM Core {version} {version2}\r\nAuthor: Milimoe\r\nBuilt on {time}\r\nSee: https://github.com/milimoe"; public static string Info => $"OSM Core {version} {version2}\r\nAuthor: Milimoe\r\nBuilt on {time}\r\nSee: https://github.com/milimoe";
} }