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 => {