Browse Source

Rpc users can't be friends :(

Or at least I don't think...
pull/369/head
ObsidianMinor 8 years ago
parent
commit
ed71305113
1 changed files with 6 additions and 14 deletions
  1. +6
    -14
      src/Discord.Net.Rpc/Entities/Users/RpcUser.cs

+ 6
- 14
src/Discord.Net.Rpc/Entities/Users/RpcUser.cs View File

@@ -55,19 +55,11 @@ namespace Discord.Rpc
async Task<IDMChannel> IUser.CreateDMChannelAsync(RequestOptions options) async Task<IDMChannel> IUser.CreateDMChannelAsync(RequestOptions options)
=> await CreateDMChannelAsync(options).ConfigureAwait(false); => await CreateDMChannelAsync(options).ConfigureAwait(false);


public Task AddFriendAsync(RequestOptions options = null)
{
throw new NotImplementedException();
}

public Task BlockUserAsync(RequestOptions options = null)
{
throw new NotImplementedException();
}

public Task RemoveRelationshipAsync(RequestOptions options = null)
{
throw new NotImplementedException();
}
Task IUser.AddFriendAsync(RequestOptions options)
=> throw new NotSupportedException();
Task IUser.BlockUserAsync(RequestOptions options)
=> throw new NotSupportedException();
Task IUser.RemoveRelationshipAsync(RequestOptions options)
=> throw new NotSupportedException();
} }
} }

Loading…
Cancel
Save