From 6756d9bee0849acd03b9557ec3bb9a1bdc7e97eb Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Tue, 3 Oct 2023 17:25:00 +0500 Subject: [PATCH] Revert "Resolve conversation" This reverts commit 12fd4972aedde01c388b96c7924a66ccc4386004. --- src/Commands/ToolsCommandGroup.cs | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/Commands/ToolsCommandGroup.cs b/src/Commands/ToolsCommandGroup.cs index 2559f11..00ed553 100644 --- a/src/Commands/ToolsCommandGroup.cs +++ b/src/Commands/ToolsCommandGroup.cs @@ -277,22 +277,16 @@ public class ToolsCommandGroup : CommandGroup description.AppendLine().Append("- ").Append(string.Format( 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( 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;