no more crash when somebody did a messag

This commit is contained in:
Yessiest 2022-04-06 19:28:13 +04:00
parent 7bc7ef9549
commit 283f4bf8d2
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ function server_handler:__init(client,guild,options)
end)
end
self.client:on("messageCreate",function(msg)
if msg.guild.id == self.id then
if msg.guild and msg.guild.id == self.id then
self.command_handler:handle(msg)
end
end)