diff --git a/run_command.go b/run_command.go index ca6b6c4..48a2a46 100644 --- a/run_command.go +++ b/run_command.go @@ -41,7 +41,7 @@ func (hir *haccerInteractionsRunner) GuildChannelRunCommand(c Command, args *[]C if len(words) < 1 { return } - if m.Interaction.User.ID == s.State.User.ID && words[0] == c.Name { + if m.Interaction.User.ID == s.State.User.ID && words[0] == c.Name && m.Author.ID == c.ApplicationID { commandRespChan <- *m.Message cmdMutex.Unlock() }