diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm
index a0c3eb93963..51dafa08dd5 100644
--- a/code/game/verbs/ooc.dm
+++ b/code/game/verbs/ooc.dm
@@ -28,6 +28,9 @@
if(prefs.muted & MUTE_OOC)
src << "You cannot use OOC (muted)."
return
+ if(jobban_isbanned(src, "OOC"))
+ src << "You have been banned from OOC."
+ return
if(handle_spam_prevention(msg,MUTE_OOC))
return
if(findtext(msg, "byond://"))
diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index 42ade144ac5..c6e864e8b89 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -66,6 +66,11 @@ var/global/floorIsLava = 0
body += "DEADCHAT\]"
body += "(toggle all)"
+ if(jobban_isbanned(M, "OOC"))
+ body+= "OOCBAN | "
+ else
+ body+= "OOCBAN | "
+
body += "
"
body += "Jump to | "
body += "Get | "