Actually mark the methods virtual #derp

This commit is contained in:
Joe4evr
2017-01-30 03:17:57 +01:00
parent c2599977a5
commit ea298875af

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()
{ {
} }