From 6678b17a0fd32d8a7e402d0eb7512e9c29b8342a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20T=C3=B6rcsv=C3=A1ri?= Date: Fri, 25 Mar 2016 13:01:44 +0100 Subject: [PATCH] typo fix --- NadekoBot/Modules/Gambling/Gambling.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NadekoBot/Modules/Gambling/Gambling.cs b/NadekoBot/Modules/Gambling/Gambling.cs index e475e4a0..8b6d8a76 100644 --- a/NadekoBot/Modules/Gambling/Gambling.cs +++ b/NadekoBot/Modules/Gambling/Gambling.cs @@ -29,14 +29,14 @@ namespace NadekoBot.Modules.Gambling cgb.CreateCommand(Prefix + "raffle") .Description("Prints a name and ID of a random user from the online list from the (optional) role.") .Parameter("role", ParameterType.Optional) - .Do(RaffleTask()); + .Do(RaffleFunc()); cgb.CreateCommand(Prefix + "$$") .Description("Check how many NadekoFlowers you have.") - .Do(NadekoFlowerCheckTask()); + .Do(NadekoFlowerCheckFunc()); }); } - private static System.Func NadekoFlowerCheckTask() + private static System.Func NadekoFlowerCheckFunc() { return async e => { @@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Gambling }; } - private static System.Func RaffleTask() + private static System.Func RaffleFunc() { return async e => {