removes the 'is' from the set-pose command (#23190)

* removes the 'is' from the set-pose command

* Update code/modules/mob/living/carbon/human/human_mob.dm

This commit mandates Lewcc to complete dark chasm with cresselia and the worst starter characters

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>

---------

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
Tom Heeren
2023-11-14 13:39:51 +00:00
committed by GitHub
co-authored by Luc
parent 26ef96358b
commit 5e7e0f348b
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -293,7 +293,7 @@
if(pose)
if(findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0)
pose = addtext(pose,".") //Makes sure all emotes end with a period.
msg += "\n[p_they(TRUE)] [p_are()] [pose]"
msg += "\n[p_they(TRUE)] [pose]"
. = list(msg)
@@ -2129,7 +2129,7 @@ Eyes need to have significantly high darksight to shine unless the mob has the X
if(stat)
return
pose = sanitize(copytext(input(usr, "This is [src]. [p_they(TRUE)] [p_are()]...", "Pose", null) as text, 1, MAX_MESSAGE_LEN))
pose = sanitize(copytext(input(usr, "This is [src]. [p_they(TRUE)]...", "Pose", null) as text, 1, MAX_MESSAGE_LEN))
/mob/living/carbon/human/verb/set_flavor()
set name = "Set Flavour Text"
@@ -53,7 +53,7 @@
if(pose)
if(findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0)
pose = addtext(pose,".") //Makes sure all emotes end with a period.
msg += "\nIt is [pose]"
msg += "\nIt [pose]"
. += msg
user.showLaws(src)
@@ -334,7 +334,7 @@
set desc = "Sets a description which will be shown when someone examines you."
set category = "IC"
pose = sanitize(copytext(input(usr, "This is [src]. It is...", "Pose", null) as text, 1, MAX_MESSAGE_LEN))
pose = sanitize(copytext(input(usr, "This is [src]. It...", "Pose", null) as text, 1, MAX_MESSAGE_LEN))
/mob/living/silicon/verb/set_flavor()
set name = "Set Flavour Text"