03-10-2016, 02:28 AM
I'm making some small changes to the messages and thought you might wanna know what they are and why!
VS
The built in \his macro (the direction of the slash is important: /his wouldn't work) doesn't know you want to use "him/her/themself" here, and is kinda iffy on how well it works (sometimes it likes to be confused about which thing you want the gender of - though this message would probably be fine). him_or_her() and his_or_her() are more reliable since you tell it exactly who's gender you want.
Not a big deal, just an FYI.
Code:
user.visible_message("<span style=\"color:red\"><b>[user] beats /his in the head with a crowbar, like some kind of suicidal theoretical physicist.</b></span>")
Code:
user.visible_message("<span style='color:red'><b>[user] beats [him_or_her(user)]self in the head with a crowbar, like some kind of suicidal theoretical physicist.</b></span>")
The built in \his macro (the direction of the slash is important: /his wouldn't work) doesn't know you want to use "him/her/themself" here, and is kinda iffy on how well it works (sometimes it likes to be confused about which thing you want the gender of - though this message would probably be fine). him_or_her() and his_or_her() are more reliable since you tell it exactly who's gender you want.
Not a big deal, just an FYI.