Example #1
0
 public async Task UnAlt(IUser user)
 {
     await Score.MarkAltOf(Context.Client, user.Id, null);
     await ReplyAsync($"Marked {user.Mention} as an alt of nobody.");
 }
Example #2
0
 public async Task Alt(IUser user, IUser user2)
 {
     await Score.MarkAltOf(Context.Client, user.Id, user2.Id);
     await ReplyAsync($"Marked {user.Mention} as an alt of {user2.Mention}.");
 }