From c857d36c65972bf2e8122ef1092913f838b26155 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Thu, 16 Jul 2020 09:56:07 +0200
Subject: [PATCH] Nvm don't use unordered arguments

---
 commands/admin/shameboard.js | 2 ++
 commands/admin/starboard.js  | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/commands/admin/shameboard.js b/commands/admin/shameboard.js
index 12ba61a..bed01db 100644
--- a/commands/admin/shameboard.js
+++ b/commands/admin/shameboard.js
@@ -14,7 +14,9 @@ class shameboardCommand extends Command {
 					type: 'string',
 					prompt: {
 						start: 'What emote should be used to enter the shameboard?',
+						optional: true
 					},
+					default: '👎',
 					unordered: true
 				},
 				{
diff --git a/commands/admin/starboard.js b/commands/admin/starboard.js
index e6ce6e0..3848def 100644
--- a/commands/admin/starboard.js
+++ b/commands/admin/starboard.js
@@ -14,8 +14,9 @@ class StarBoardCommand extends Command {
 					type: 'string',
 					prompt: {
 						start: 'What emote should be used to enter the shameboard?',
+						optional: true
 					},
-					unordered: true
+					default: '👍',
 				},
 				{
 					id: 'count',
@@ -25,7 +26,6 @@ class StarBoardCommand extends Command {
 						optional: true
 					},
 					default: '4',
-					unordered: true
 				},
 				{
 					id: 'remove',