From f9085b19e0bc3d4bc28fc13a5603a31a91ee7c20 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Wed, 17 Nov 2021 17:07:49 +0800 Subject: - unload all modules on game unload event - make all chatlib chats use soopyv2 prefix --- features/fragBot/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'features/fragBot') diff --git a/features/fragBot/index.js b/features/fragBot/index.js index 67bb9a3..e3a571f 100644 --- a/features/fragBot/index.js +++ b/features/fragBot/index.js @@ -61,10 +61,10 @@ class FragBot extends Feature { fragbotCommand(...args){ if(this.hostingFragBot){ this.hostingFragBot = false - ChatLib.chat("&aFragbot has been disabled") + ChatLib.chat(this.FeatureManager.messagePrefix + "Fragbot has been disabled") }else{ this.hostingFragBot = true - ChatLib.chat("&aNow acting as a fragbot, run /fragbot again to disable") + ChatLib.chat(this.FeatureManager.messagePrefix + "Now acting as a fragbot, run /fragbot again to disable") } } -- cgit