Merge pull request #14018 from BonniePandora/Text-box-QoL-stuff

Various text-box QoL stuff
This commit is contained in:
Casey
2022-11-06 11:54:58 -05:00
committed by CHOMPStation2
parent db955fb40c
commit 06f49f16a9
2 changed files with 11 additions and 11 deletions

View File

@@ -116,7 +116,7 @@
///// PSAY /////
/mob/verb/psay(message as text|null)
/mob/verb/psay(message as text)
set category = "IC"
set name = "Psay"
set desc = "Talk to people affected by complete absorbed or dominate predator/prey."
@@ -221,7 +221,7 @@
///// PME /////
/mob/verb/pme(message as text|null)
/mob/verb/pme(message as message)
set category = "IC"
set name = "Pme"
set desc = "Emote to people affected by complete absorbed or dominate predator/prey."
@@ -324,7 +324,7 @@
M.forced_psay = FALSE
M.me_verb(message)
/mob/living/verb/player_narrate(message as text|null)
/mob/living/verb/player_narrate(message as message)
set category = "IC"
set name = "Narrate (Player)"
set desc = "Narrate an action or event! An alternative to emoting, for when your emote shouldn't start with your name!"

View File

@@ -469,17 +469,17 @@
///////////////////
//Verbs for humans
/mob/proc/nsay(message as text|null)
/mob/proc/nsay(message as text)
set name = "NSay"
set desc = "Speak into your NIF's Soulcatcher."
set category = "IC"
src.nsay_act(message)
/mob/proc/nsay_act(message as text|null)
/mob/proc/nsay_act(message as text)
to_chat(src, SPAN_WARNING("You must be a humanoid with a NIF implanted to use that."))
/mob/living/carbon/human/nsay_act(message as text|null)
/mob/living/carbon/human/nsay_act(message as text)
if(stat != CONSCIOUS)
to_chat(src,SPAN_WARNING("You can't use NSay while unconscious."))
return
@@ -499,17 +499,17 @@
var/sane_message = sanitize(message)
SC.say_into(sane_message,src)
/mob/proc/nme(message as text|null)
/mob/proc/nme(message as message)
set name = "NMe"
set desc = "Emote into your NIF's Soulcatcher."
set category = "IC"
src.nme_act(message)
/mob/proc/nme_act(message as text|null)
/mob/proc/nme_act(message as message)
to_chat(src, SPAN_WARNING("You must be a humanoid with a NIF implanted to use that."))
/mob/living/carbon/human/nme_act(message as text|null)
/mob/living/carbon/human/nme_act(message as message)
if(stat != CONSCIOUS)
to_chat(src,SPAN_WARNING("You can't use NMe while unconscious."))
return
@@ -574,7 +574,7 @@
QDEL_NULL(eyeobj)
soulcatcher.notify_into("[src] ended AR projection.")
/mob/living/carbon/brain/caught_soul/verb/nsay_brain(message as text|null)
/mob/living/carbon/brain/caught_soul/verb/nsay_brain(message as text)
set name = "NSay"
set desc = "Speak into the NIF's Soulcatcher (circumventing AR speaking)."
set category = "Soulcatcher"
@@ -585,7 +585,7 @@
var/sane_message = sanitize(message)
soulcatcher.say_into(sane_message,src,null)
/mob/living/carbon/brain/caught_soul/verb/nme_brain(message as text|null)
/mob/living/carbon/brain/caught_soul/verb/nme_brain(message as message)
set name = "NMe"
set desc = "Emote into the NIF's Soulcatcher (circumventing AR speaking)."
set category = "Soulcatcher"