From 43aa9f44fa5ad9e8e83a094d3bf135cc74894e6d Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Sun, 7 May 2017 23:44:33 -0700 Subject: [PATCH 1/2] Update robot.dm --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 6ef36096dc8..5d5a9064d5e 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -1116,7 +1116,7 @@ M.visible_message("Unfortunately, [M] just can't seem to hold onto [src]!") return if(iscarbon(M) && (!riding_datum.equip_buckle_inhands(M, 1))) - M.visible_message("[M] can't climb onto [src] because his hands are full!") + M.visible_message("[M] can't climb onto [src] because [(M.gender == FEMALE) ? "her" : "his"] hands are full!") return . = ..(M, force, check_loc) From 9e5b968e45c36954bef726e61d24f8df3a047f41 Mon Sep 17 00:00:00 2001 From: kevinz000 Date: Sun, 7 May 2017 23:54:48 -0700 Subject: [PATCH 2/2] Update robot.dm --- code/modules/mob/living/silicon/robot/robot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 5d5a9064d5e..a35e15dc7b7 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -1116,7 +1116,7 @@ M.visible_message("Unfortunately, [M] just can't seem to hold onto [src]!") return if(iscarbon(M) && (!riding_datum.equip_buckle_inhands(M, 1))) - M.visible_message("[M] can't climb onto [src] because [(M.gender == FEMALE) ? "her" : "his"] hands are full!") + M.visible_message("[M] can't climb onto [src] because [M.p_their()] hands are full!") return . = ..(M, force, check_loc)