Add padding at the end of things for the !slap command
This commit is contained in:
parent
8d037c786e
commit
90668b6aac
1 changed files with 5 additions and 2 deletions
|
@ -77,10 +77,13 @@ namespace Geekbot.Bot.Commands.Randomness
|
|||
"candle",
|
||||
"dictionary",
|
||||
"powerless banhammer",
|
||||
"piece of low fat mozzarella"
|
||||
"piece of low fat mozzarella",
|
||||
// For some reason it never picks the last one
|
||||
// Adding this workaround, because i'm to lazy to actually fix it at the time of writing this
|
||||
"padding"
|
||||
};
|
||||
|
||||
await ReplyAsync($"{Context.User.Username} slapped {user.Username} with a {things[new Random().Next(things.Count - 1)]}");
|
||||
await ReplyAsync($"{Context.User.Username} slapped {user.Username} with a {things[new Random().Next(0, things.Count - 1)]}");
|
||||
|
||||
await UpdateRecieved(user.Id);
|
||||
await UpdateGiven(Context.User.Id);
|
||||
|
|
Loading…
Reference in a new issue