Skip to content

Commit

Permalink
IC
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Jul 30, 2024
1 parent 47a2a3b commit 598c989
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/modules/admin/verbs/pray.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/client/verb/pray(msg as text)
set category = "IC"
set category = "IC.Chat"
set name = "Pray"

msg = copytext_char(sanitize(msg), 1, MAX_MESSAGE_LEN)
Expand Down
6 changes: 3 additions & 3 deletions code/modules/mob/say.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
///what clients use to speak. when you type a message into the chat bar in say mode, this is the first thing that goes off serverside.
/mob/verb/say_verb(message as text)
set name = "Say"
set category = "IC"
set category = "IC.Chat"
set instant = TRUE

if(!message)
Expand All @@ -14,7 +14,7 @@

/mob/verb/me_verb(message as text)
set name = "Me"
set category = "IC"
set category = "IC.Chat"
set instant = TRUE

if(!message)
Expand All @@ -27,7 +27,7 @@

/mob/verb/whisper_verb(message as text)
set name = "Whisper"
set category = "IC"
set category = "IC.Chat"
set instant = TRUE

if(!message)
Expand Down

0 comments on commit 598c989

Please sign in to comment.