From 2e99fec5de96c76d29ca9673f4abc429cda1ebd2 Mon Sep 17 00:00:00 2001 From: jenz Date: Mon, 16 Feb 2026 19:47:15 +0100 Subject: [PATCH] added calladmin support --- Discord_UNLOZE/scripting/live_chat_stoat.sp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Discord_UNLOZE/scripting/live_chat_stoat.sp b/Discord_UNLOZE/scripting/live_chat_stoat.sp index ffcd0a5..cb9b8ce 100644 --- a/Discord_UNLOZE/scripting/live_chat_stoat.sp +++ b/Discord_UNLOZE/scripting/live_chat_stoat.sp @@ -101,6 +101,7 @@ public void GetDiscordToStoat(const char[] username, const char[] message, int t //type = 2. ADMIN LOGS BHOPPING ZE //type = 3. AMDIN LOGS entwatch //type = 4. admin logs ze ban evasion + //type = 5. Calladmin if (type == 1) { SendToStoat(username, message, ""); @@ -117,4 +118,8 @@ public void GetDiscordToStoat(const char[] username, const char[] message, int t { SendToStoat(username, message, ""); } + else if (type == 5) + { + SendToStoat(username, message, ""); + } }