From 0aec68325e141910307b097dbfcfe74b32cf199c Mon Sep 17 00:00:00 2001
From: Supositware <loic.bersier1@gmail.com>
Date: Fri, 3 May 2019 11:52:13 +0200
Subject: [PATCH] match: rest

---
 commands/owner/status.js   | 4 ++--
 commands/owner/username.js | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/commands/owner/status.js b/commands/owner/status.js
index 087d08f..78e4a7e 100644
--- a/commands/owner/status.js
+++ b/commands/owner/status.js
@@ -4,14 +4,14 @@ class StatusCommand extends Command {
 	constructor() {
 		super('status', {
 			aliases: ['status'],
-			split: 'none',
 			category: 'owner',
 			ownerOnly: 'true',
 			args: [
 				{
 					id: 'status',
 					prompt: 'Wich status should i have?',
-					type: 'string'
+					type: 'string',
+					match: 'rest'
 				}
 			],
 			description: {
diff --git a/commands/owner/username.js b/commands/owner/username.js
index 2738bb4..a31c529 100644
--- a/commands/owner/username.js
+++ b/commands/owner/username.js
@@ -4,14 +4,14 @@ class usernameCommand extends Command {
 	constructor() {
 		super('username', {
 			aliases: ['username'],
-			split: 'none',
 			category: 'owner',
 			ownerOnly: 'true',
 			args: [
 				{
 					id: 'username',
 					prompt: 'Wich username should i have?',
-					type: 'string'
+					type: 'string',
+					match: 'rest'
 				}
 			],
 			description: {