Browse Source

ModuleBase should map to ICommandContext

tags/1.0.0-rc2
RogueException 8 years ago
parent
commit
aca8def0cb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Commands/ModuleBase.cs

+ 1
- 1
src/Discord.Net.Commands/ModuleBase.cs View File

@@ -3,7 +3,7 @@ using System.Threading.Tasks;

namespace Discord.Commands
{
public abstract class ModuleBase : ModuleBase<CommandContext> { }
public abstract class ModuleBase : ModuleBase<ICommandContext> { }

public abstract class ModuleBase<T> : IModuleBase
where T : class, ICommandContext


Loading…
Cancel
Save