From ed8712bb88dff4a7dadbb0db24153ab91ad6efa4 Mon Sep 17 00:00:00 2001 From: ZXMushroom63 Date: Thu, 16 Jan 2025 08:13:30 +0800 Subject: [PATCH] fix a few bugs --- examplemods/afkmod.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examplemods/afkmod.js b/examplemods/afkmod.js index d56dc5f..2983495 100644 --- a/examplemods/afkmod.js +++ b/examplemods/afkmod.js @@ -16,11 +16,11 @@ if (e.message.toLowerCase() === ".afk") { if (active === null) { queueJump(); - ModAPI.displayToChat("Deactivated anti-afk mod"); + ModAPI.displayToChat("Activated anti-afk mod!\nI recommend using the sliders mod to decrease your max fps to save battery."); } else { clearTimeout(active); active = null; - ModAPI.displayToChat("Activated anti-afk mod"); + ModAPI.displayToChat("Deactivated anti-afk mod."); } e.preventDefault = true; }