Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] Show hand and foot splints on examine #3076

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
msg += "The message \"[robohead.display_text]\" is displayed on its screen.\n"

//splints
for(var/organ in list(BP_L_LEG, BP_R_LEG, BP_L_ARM, BP_R_ARM))
for(var/organ in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))
var/obj/item/organ/external/o = get_organ(organ)
if(o && o.splinted && o.splinted.loc == o)
msg += "[SPAN_WARNING("[P.He] [P.has] \a [o.splinted] on [P.his] [o.name]!")]\n"
Expand Down
2 changes: 1 addition & 1 deletion html/changelogs/AutoChangeLog-sierra-pr-3055.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ changes:
Dumping the entire magazine at once onto the ground by using it in your active
hand is still instant.}
- {rscadd: You can now transfer bullets between magazines of matching caliburs by
using magazines on eachother. Have a bunch of partials you want to repack? That's
using magazines on eachother. Have a bunch of partials you want to repack. That's
a lot easier now.}
- {rscadd: 'Clicking on a pile of bullets on the ground with a magazine or ammobox
will now load bullets from the pile into the magazine/box. This intentionally
Expand Down
Loading