From c4f4659e93a966a7cc3719c1e638197e99a8610c Mon Sep 17 00:00:00 2001
From: Supositware <loic.bersier1@gmail.com>
Date: Fri, 8 Feb 2019 19:45:01 +0100
Subject: [PATCH] Added [author]

---
 rand.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/rand.js b/rand.js
index 5aa9ef9e..d204adae 100644
--- a/rand.js
+++ b/rand.js
@@ -44,8 +44,9 @@ exports.random = function (text, message) {
 		text = text.replace(/\[unit\]/, units[randNumber(units)]);
 		text = text.replace(/\[member\]/, message.guild.members.random().user.username);
 		text = text.replace(/\[number\]/, Math.floor((Math.random() * 9) + 1));
+		text = text.replace(/\[author\]/, message.author.username);
 		//	  Verify if it replaced everything
-	} while( text.includes('[verb]') || text.includes('[adverbs]') || text.includes('[noun]') || text.includes('[adjective]') || text.includes('[member]') || text.includes('[number]') || text.includes('[activities]') || text.includes('[celebrities]') || text.includes('[countries]') || text.includes('[diseases]') || text.includes('[elements]') || text.includes('[hobbies]') || text.includes('[music]') || text.includes('[prefixes]') || text.includes('[pronoun]') || text.includes('[state]') || text.includes('[title]') || text.includes('[unit]'));
+	} while( text.includes('[verb]') || text.includes('[adverbs]') || text.includes('[noun]') || text.includes('[adjective]') || text.includes('[member]') || text.includes('[number]') || text.includes('[activities]') || text.includes('[celebrities]') || text.includes('[countries]') || text.includes('[diseases]') || text.includes('[elements]') || text.includes('[hobbies]') || text.includes('[music]') || text.includes('[prefixes]') || text.includes('[pronoun]') || text.includes('[state]') || text.includes('[title]') || text.includes('[unit]') || text.includes('[author]'));
 
 	return text;
 };
\ No newline at end of file