diff --git a/chat/message/message.go b/chat/message/message.go index 143096a..dc913e1 100644 --- a/chat/message/message.go +++ b/chat/message/message.go @@ -268,3 +268,7 @@ func (m CommandMsg) Args() []string { func (m CommandMsg) Body() string { return m.body } + +func (m CommandMsg) RenderSelf(cfg UserConfig) string { + return m.body +}