Used BYOND macro instead.

This commit is contained in:
Chinsky
2013-01-19 12:42:06 +04:00
parent fa7f2327ce
commit 03321fa04d

View File

@@ -595,11 +595,4 @@
set desc = "Sets description which will be shown when someone examines you"
set category = "IC"
var/t_he = "It"
switch(gender)
if(MALE)
t_he = "He"
if(FEMALE)
t_he = "She"
var/n_pose = copytext(sanitize(input(usr, "This is [src]. [t_he] is...", "Pose", null) as text), 1, MAX_MESSAGE_LEN)
pose = n_pose;
pose = copytext(sanitize(input(usr, "This is [src]. \He is...", "Pose", null) as text), 1, MAX_MESSAGE_LEN)