From 3bf3145fb9e560d92dd82157e6ad8a147f7722ca Mon Sep 17 00:00:00 2001 From: Azzy <74739991+AzzyDreemurr13@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:19:48 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B8=D1=82=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B8=D0=B4=D0=B5=D1=82=D1=81=D1=8F=20=D0=BE=D1=82=D0=BA=D0=B0?= =?UTF-8?q?=D1=82=D0=B8=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/modules/admin/admin_verbs.dm | 4 +++- taucetistation.dme | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index c88211e92e56..ab081dd2d241 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -16,6 +16,8 @@ var/global/list/admin_verbs_admin = list( /client/proc/colorooc, //allows us to set a custom colour for everythign we say in ooc, /client/proc/admin_ghost, //allows us to ghost/reenter body at will, /client/proc/toggle_view_range, //changes how far we can see, + /client/proc/cmd_mwntor_pm_context, //right-click adminPM interface, + /client/proc/cmd_mentor_pm_panel, /client/proc/cmd_admin_pm_context, //right-click adminPM interface, /client/proc/cmd_admin_pm_panel, //admin-pm list, /client/proc/cmd_admin_subtle_message, //send an message to somebody as a 'voice in their head', @@ -480,7 +482,7 @@ var/global/list/admin_verbs_hideable = list( if(!config.sql_enabled) to_chat(usr, "SQL database is disabled. Setup it or use native Byond bans.") return - + holder.DB_ban_panel() feedback_add_details("admin_verb","UBP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return diff --git a/taucetistation.dme b/taucetistation.dme index 9a2a86fff45b..1974455d3f30 100644 --- a/taucetistation.dme +++ b/taucetistation.dme @@ -1824,6 +1824,7 @@ #include "code\modules\media\broadcast\transmitters\broadcast.dm" #include "code\modules\memories\memories.dm" #include "code\modules\mentor\mentor.dm" +#include "code\modules\mentor\mentorpm.dm" #include "code\modules\mentor\mentorhelp.dm" #include "code\modules\metahelp\metahelp.dm" #include "code\modules\minigames\minesweeper.dm"