mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
Running with scissors (#32685)
* Running with scissors. * Fix. * Text stuff. * Change comment. * Fix randomized targeting. * Clumsyness. * . * . * . * Monkey messages. * . * . * Nicer conjugation. * . * More flexible attack messages. * . * . * Butter, butter on a stick, and slippery sliders. * Refactor slipping messages. * . * . * Nicer syringe messages. * You hit the camera with. * Remove debug. * Update items.dm Only when running. * Update items.dm * Update effect_system.dm * Remove unneeded arg.
This commit is contained in:
@@ -45,12 +45,13 @@
|
||||
size = "huge"
|
||||
|
||||
var/pronoun = "it is"
|
||||
if(src.gender == FEMALE)
|
||||
pronoun = "she is"
|
||||
else if(src.gender == MALE)
|
||||
pronoun = "he is"
|
||||
else if(src.gender == PLURAL)
|
||||
pronoun = "they are"
|
||||
switch(gender)
|
||||
if(FEMALE)
|
||||
pronoun = "she is"
|
||||
if(MALE)
|
||||
pronoun = "he is"
|
||||
if(PLURAL)
|
||||
pronoun = "they are"
|
||||
|
||||
..(user, " [capitalize(pronoun)] [size].", show_name, FALSE)
|
||||
if(meat_taken > 0)
|
||||
|
||||
Reference in New Issue
Block a user