diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm
index d629de50a02..08944435cec 100644
--- a/code/modules/admin/verbs/debug.dm
+++ b/code/modules/admin/verbs/debug.dm
@@ -52,6 +52,13 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
var/procname = clean_input("Proc path, eg: /proc/fake_blood","Path:", null)
if(!procname) return
+ // absolutely not
+ if(findtextEx(trim(lowertext(procname)), "rustg"))
+ message_admins("[key_name_admin(src)] attempted to proc call rust-g procs. Inform the host at once.")
+ log_admin("[key_name(src)] attempted to proc call rust-g procs. Inform the host at once.")
+ GLOB.discord_manager.send2discord_simple(DISCORD_WEBHOOK_ADMIN, "[key_name(src)] attempted to proc call rustg things. Inform the host at once.")
+ return
+
if(targetselected && !hascall(target,procname))
to_chat(usr, "Error: callproc(): target has no such call [procname].")
return