Skip to content
This repository has been archived by the owner on Apr 20, 2022. It is now read-only.

Commit

Permalink
Fix SocketSlashCommandData access modifier. (#237)
Browse files Browse the repository at this point in the history
Fixes #229
  • Loading branch information
emillly-b authored Oct 12, 2021
1 parent 33a96ab commit ae3f60b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class SocketSlashCommand : SocketCommandBase
/// <summary>
/// The data associated with this interaction.
/// </summary>
private new SocketSlashCommandData Data { get; }
public new SocketSlashCommandData Data { get; }

internal SocketSlashCommand(DiscordSocketClient client, Model model, ISocketMessageChannel channel)
: base(client, model, channel)
Expand Down

0 comments on commit ae3f60b

Please sign in to comment.