diff --git a/code/modules/mob/mob_emote.dm b/code/modules/mob/mob_emote.dm index 8aba826fa66..185359d4027 100644 --- a/code/modules/mob/mob_emote.dm +++ b/code/modules/mob/mob_emote.dm @@ -145,7 +145,8 @@ var/obj/item/grab/G = H.get_active_hand() if(G && G.affecting) if(H.buckled || G.affecting.buckled) - to_chat(user, "[G.affecting] is buckled, you can't flip around [G.affecting.p_them()]!") + var/who_is = H.buckled ? "You are" : "[G.affecting] is" + to_chat(user, "[who_is] buckled, you can't flip around [G.affecting.p_them()]!") return TRUE var/turf/oldloc = user.loc var/turf/newloc = G.affecting.loc