From afcd6039c640f5cefdc947b3a6e4110508b0802f Mon Sep 17 00:00:00 2001 From: Sean Stoves Date: Wed, 5 Aug 2020 20:56:21 -0400 Subject: [PATCH] fixing default diceRecipe --- ChaosBot/Discord/Modules/User/Roll.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChaosBot/Discord/Modules/User/Roll.cs b/ChaosBot/Discord/Modules/User/Roll.cs index a77b1a2..87c8021 100644 --- a/ChaosBot/Discord/Modules/User/Roll.cs +++ b/ChaosBot/Discord/Modules/User/Roll.cs @@ -25,7 +25,7 @@ namespace ChaosBot.Discord.Modules.User { string diceRecipe = null; - if (args.Length > 1) + if (args.Length >= 1) diceRecipe = Strings.Join(args, " "); else diceRecipe = "1d20";