Skip to content

Commit

Permalink
fix(network): fix bug where bot cant reply about the nsfw warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-737 committed Jan 6, 2024
1 parent 2b90d34 commit 6c8fa20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/managers/NetworkManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ export default class NetworkManager extends Factory {
})
.setColor('Red');

return await message.reply({ embeds: [nsfwEmbed] });
await message.channel.send({ content: `${message.author}`, embeds: [nsfwEmbed] });
return;
}
}

Expand Down

0 comments on commit 6c8fa20

Please sign in to comment.