From ac6762998ff31b1dc87512c95f914a7c40523429 Mon Sep 17 00:00:00 2001 From: Jakub 'Eremiell' Marek Date: Mon, 3 Jan 2022 15:48:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20UtilityFunctions=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Game.cs was trying to use UtilityFunctions nstead of Utils. --- UPBot Code/Commands/Game.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UPBot Code/Commands/Game.cs b/UPBot Code/Commands/Game.cs index 8d5daa3..4ad57d1 100644 --- a/UPBot Code/Commands/Game.cs +++ b/UPBot Code/Commands/Game.cs @@ -27,7 +27,7 @@ public async Task GameCommand(CommandContext ctx) [Description("Returns True or False")] public async Task BoolCommand(CommandContext ctx) { - UtilityFunctions.LogUserCommand(ctx); + Utils.LogUserCommand(ctx); await PlayBool(ctx); } @@ -35,14 +35,14 @@ public async Task BoolCommand(CommandContext ctx) [Description("Play Rock, Paper, Scissors")] public async Task RPSCommand(CommandContext ctx, [Description("rock | paper | scissors")] string kind) { - UtilityFunctions.LogUserCommand(ctx); + Utils.LogUserCommand(ctx); await PlayRockPaperScissors(ctx, kind); } [Command("rps")] public async Task RPSCommand(CommandContext ctx) { - UtilityFunctions.LogUserCommand(ctx); + Utils.LogUserCommand(ctx); await PlayRockPaperScissors(ctx, null); }