Browse Source

Update ModuleBase.cs

pull/848/head
Jamaic230 GitHub 8 years ago
parent
commit
cfea72b2e8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Commands/ModuleBase.cs

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

@@ -19,7 +19,7 @@ namespace Discord.Commands
{ {
} }


protected virtual void AfterExecute(CommandInfo command)
protected virtual void AfterExecute(CommandInfo command, Exception exception)
{ {
} }


@@ -32,6 +32,6 @@ namespace Discord.Commands


void IModuleBase.BeforeExecute(CommandInfo command) => BeforeExecute(command); void IModuleBase.BeforeExecute(CommandInfo command) => BeforeExecute(command);


void IModuleBase.AfterExecute(CommandInfo command) => AfterExecute(command);
void IModuleBase.AfterExecute(CommandInfo command, Exception exception) => AfterExecute(command, exception);
} }
} }

Loading…
Cancel
Save