mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-20 00:43:36 +03:00
parent
325138239d
commit
6756d9bee0
1 changed files with 4 additions and 10 deletions
|
@ -277,22 +277,16 @@ public class ToolsCommandGroup : CommandGroup
|
||||||
|
|
||||||
description.AppendLine().Append("- ").Append(string.Format(
|
description.AppendLine().Append("- ").Append(string.Format(
|
||||||
Messages.RandomMin, Markdown.InlineCode(min.ToString())));
|
Messages.RandomMin, Markdown.InlineCode(min.ToString())));
|
||||||
if (secondNullable is null)
|
if (secondNullable is null && first >= 0)
|
||||||
{
|
{
|
||||||
if (first >= 0)
|
description.Append(' ').Append(Messages.Default);
|
||||||
{
|
|
||||||
description.Append(' ').Append(Messages.Default);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description.AppendLine().Append("- ").Append(string.Format(
|
description.AppendLine().Append("- ").Append(string.Format(
|
||||||
Messages.RandomMax, Markdown.InlineCode(max.ToString())));
|
Messages.RandomMax, Markdown.InlineCode(max.ToString())));
|
||||||
if (secondNullable is null)
|
if (secondNullable is null && first < 0)
|
||||||
{
|
{
|
||||||
if (first < 0)
|
description.Append(' ').Append(Messages.Default);
|
||||||
{
|
|
||||||
description.Append(' ').Append(Messages.Default);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var embedColor = ColorsList.Blue;
|
var embedColor = ColorsList.Blue;
|
||||||
|
|
Loading…
Add table
Reference in a new issue