diff --git a/code/modules/client/verbs/looc.dm b/code/modules/client/verbs/looc.dm index 42c20a2dc6..5e07134d4f 100644 --- a/code/modules/client/verbs/looc.dm +++ b/code/modules/client/verbs/looc.dm @@ -4,12 +4,12 @@ set category = "OOC" if(GLOB.say_disabled) //This is here to try to identify lag problems - usr << " Speech is currently admin-disabled." + to_chat(usr, " Speech is currently admin-disabled.") return if(!mob) return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = copytext(sanitize(msg), 1, MAX_MESSAGE_LEN) @@ -17,23 +17,23 @@ return if(!(prefs.toggles & CHAT_OOC)) - src << " You have OOC muted." + to_chat(src, " You have OOC muted.") return if(!holder) if(!GLOB.ooc_allowed) - src << " OOC is globally muted" + to_chat(src, " OOC is globally muted") return if(!GLOB.dooc_allowed && (mob.stat == DEAD)) - usr << " OOC for dead mobs has been turned off." + to_chat(usr, " OOC for dead mobs has been turned off.") return if(prefs.muted & MUTE_OOC) - src << " You cannot use OOC (muted)." + to_chat(src, " You cannot use OOC (muted).") return if(handle_spam_prevention(msg,MUTE_OOC)) return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in LOOC: [msg]") return