Adding new AJ setting for Server Specific Configuration
This commit is contained in:
parent
773cdf835c
commit
0ccf8f96f7
@ -60,12 +60,12 @@ namespace ChaosBot.Discord.Modules
|
|||||||
[RequireUserPermission(GuildPermission.ManageGuild)]
|
[RequireUserPermission(GuildPermission.ManageGuild)]
|
||||||
public async Task RaffleCommandAdd(string user, int amount = 1)
|
public async Task RaffleCommandAdd(string user, int amount = 1)
|
||||||
{
|
{
|
||||||
if (Program.Cfg.GetValue<int>("Raffle:Max") >= amount)
|
if (Program.Cfg.GetValue<int>($"Raffle:{Context.Guild.Id}:Max") >= amount)
|
||||||
await RaffleCommandHelper("add", user, amount);
|
await RaffleCommandHelper("add", user, amount);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await ReplyAsync(
|
await ReplyAsync(
|
||||||
$"You cannot give more then {Program.Cfg.GetValue<int>("Raffle:Max").ToString()} tickets at a time", false);
|
$"You cannot give more then {Program.Cfg.GetValue<int>($"Raffle:{Context.Guild.Id}:Max").ToString()} tickets at a time", false);
|
||||||
_logger.Warn($"{Context.User.Username} attempted to give {amount} tickets to {user}!");
|
_logger.Warn($"{Context.User.Username} attempted to give {amount} tickets to {user}!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user