Skip to content

Commit

Permalink
fixes extra > on end of carbon examine (#2847)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

monkeys and xenos had a extra > visable in there examine
oh also catwalk examine makes you think it takes a wirecutter instead of
a welder. fixed that

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Changelog

:cl:
fix: extra > in carbon examine
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
FalloutFalcon authored Mar 27, 2024
1 parent 39fa70d commit 4933649
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/structures/catwalk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
/obj/structure/catwalk/examine(mob/user)
. = ..()
if(!(resistance_flags & INDESTRUCTIBLE))
. += "<span class='notice'>The supporting rods look like they could be <b>sliced</b>.</span>"
. += "<span class='notice'>The supporting rods look like they could be <b>welded</b>.</span>"

/obj/structure/catwalk/attackby(obj/item/C, mob/user, params)
if(C.tool_behaviour == TOOL_WELDER && !(resistance_flags & INDESTRUCTIBLE))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
var/t_has = p_have()
var/t_is = p_are()

. = list("<span class='info'>This is [icon2html(src, user)] \a <EM>[src]</EM>!>")
. = list("<span class='info'>This is [icon2html(src, user)] \a <EM>[src]</EM>!")
var/list/obscured = check_obscured_slots()

if (handcuffed)
Expand Down

0 comments on commit 4933649

Please sign in to comment.