diff --git a/commands/utility/help.js b/commands/utility/help.js
index e9c17da5..fade9df7 100644
--- a/commands/utility/help.js
+++ b/commands/utility/help.js
@@ -66,6 +66,10 @@ class HelpCommand extends Command {
 			embed.addField('Command flags', `\`${command.contentParser.flagWords.join('` `')}\``, true);
 		}
 
+		if (command.contentParser.optionFlagWords.length) {
+			embed.addField('Command options flags', `\`${command.contentParser.optionFlagWords.join('` `')}\``, true);
+		}
+
 		if (fs.existsSync(`./asset/img/command/${command.category.id}/${command.id}.png`)) {
 			embed.attachFiles(`./asset/img/command/${command.category.id}/${command.id}.png`);
 			embed.setImage(`attachment://${command.id}.png`);