Skip to content

Commit

Permalink
[MIRROR] Cup Check Grammar Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SierraKomodo authored and LordNest committed Feb 20, 2025
1 parent 61a4a09 commit 13d6b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/human/unarmed_attack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ var/global/list/sparring_attack_cache = list()
if(BP_GROIN)
var/datum/pronouns/pronouns = target.choose_from_pronouns()
target.visible_message(
SPAN_WARNING("\The [target] looks like [pronouns.he] is in pain!"),
SPAN_WARNING("[(target.gender=="female") ? "Oh god that hurt!" : "Oh no, not your[pick("testicles", "crown jewels", "clockweights", "family jewels", "marbles", "bean bags", "teabags", "sweetmeats", "goolies")]!"]")
SPAN_WARNING("\The [target] looks like [pronouns.he] [pronouns.is] in pain!"),
SPAN_WARNING("[(target.gender=="female") ? "Oh god that hurt!" : "Oh no, not your [pick("testicles", "crown jewels", "clockweights", "family jewels", "marbles", "bean bags", "teabags", "sweetmeats", "goolies")]!"]")
)
target.apply_effects(stutter = attack_damage * 2, agony = attack_damage* 3, blocked = armour)
if(BP_L_LEG, BP_L_FOOT, BP_R_LEG, BP_R_FOOT)
Expand Down

0 comments on commit 13d6b68

Please sign in to comment.