From dcaa0346938ff2cc06e869ffe9def90a1427f496 Mon Sep 17 00:00:00 2001 From: mctaylors Date: Tue, 12 Mar 2024 19:02:57 +0300 Subject: [PATCH] asdfsadfsadfasasfsfd --- src/Commands/ToolsCommandGroup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/ToolsCommandGroup.cs b/src/Commands/ToolsCommandGroup.cs index 0be7d3a..4f16634 100644 --- a/src/Commands/ToolsCommandGroup.cs +++ b/src/Commands/ToolsCommandGroup.cs @@ -509,7 +509,7 @@ public class ToolsCommandGroup : CommandGroup /// [Command("8ball")] [DiscordDefaultDMPermission(false)] - [Description("Ask a question to")] + [Description("Ask the magic 8-ball a question")] [UsedImplicitly] public async Task ExecuteEightBallAsync( // let the user think he's actually asking the ball a question @@ -546,7 +546,7 @@ public class ToolsCommandGroup : CommandGroup 1 => ColorsList.Green, 2 => ColorsList.Yellow, 3 => ColorsList.Red, - _ => ColorsList.Default + _ => throw new ArgumentOutOfRangeException(nameof(typeNumber)) }; var answer = $"EightBall{AnswerTypes[typeNumber]}{Random.Shared.Next(1, 6)}".Localized();