Fixes typos and gender pronouns

This commit is contained in:
Sam
2017-06-14 06:20:05 +01:00
parent fc1d4a9cb9
commit 4d7cb2247e
+5 -5
View File
@@ -45,8 +45,8 @@
/datum/martial_art/ninja_martial_art/teach(var/mob/living/carbon/human/H,var/make_temporary=0)
..()
H.middleClickOverride = new /datum/middleClickOverride/ninja_martial_art()
to_chat(H, "You have been taugh the ways of the <i>Creeping Widow</i>.<br>\)
Your stikes on harm intent will deal more damage.<br>Using middle mouse button on a nearby person while on harm intent will send them flying backwards.<br>\
to_chat(H, "You have been taught the ways of the <i>Creeping Widow</i>.<br>\)
Your strikes on harm intent will deal more damage.<br>Using middle mouse button on a nearby person while on harm intent will send them flying backwards.<br>\
Your grabs will instantly be aggressive while you are using this style.<br>Using middle mouse button while on harm intent and behind a person will put them in a silencing choke hold.<br>\
Using middle mouse button on a nearby person while on disarm intent will wrench their wrist, causing them to drop what they are holding.</span>"
@@ -76,7 +76,7 @@
return 0
if(has_choke_hold) // Are we already choking someone?
to_chat(A, "<span class='warning'>You are have a target in your grip!</span>")
to_chat(A, "<span class='warning'>You already have a target in your grip!</span>")
return 0
has_choke_hold = 1
@@ -98,8 +98,8 @@
D.silent += 1
D.adjustOxyLoss(1)
else
D.visible_message("<span class='warning'>[A] loses his grip on [D]'s neck!</span>", \
"<span class='userdanger'>[A] loses his grip on your neck!</span>")
D.visible_message("<span class='warning'>[A] loses \his grip on [D]'s neck!</span>", \
"<span class='userdanger'>[A] loses \his grip on your neck!</span>")
has_choke_hold = 0
return 0
I++