Browse Source

Actually mark the methods virtual #derp

tags/1.0-rc
Joe4evr 8 years ago
parent
commit
ea298875af
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

@@ -15,11 +15,11 @@ namespace Discord.Commands
return await Context.Channel.SendMessageAsync(message, isTTS, embed, options).ConfigureAwait(false); return await Context.Channel.SendMessageAsync(message, isTTS, embed, options).ConfigureAwait(false);
} }


protected void BeforeExecute()
protected virtual void BeforeExecute()
{ {
} }


protected void AfterExecute()
protected virtual void AfterExecute()
{ {
} }




Loading…
Cancel
Save