diff options
Diffstat (limited to 'commands/msg/reply.go')
-rw-r--r-- | commands/msg/reply.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 333b3e3a..04c2eba5 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -34,7 +34,11 @@ type reply struct { } func init() { - register(reply{}) + commands.Register(reply{}) +} + +func (reply) Context() commands.CommandContext { + return commands.MESSAGE } func (reply) Aliases() []string { |