Skip to content

Commit

Permalink
small 'typo' fix (#4744)
Browse files Browse the repository at this point in the history
# About the pull request

fixes smartgunner far sight's log mentioning action name instead of head
mounted sight's name

# Explain why it's good for the game
it was probably a mistype
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>
before

You enable Toggle Far Sight's far sight system.

and after
You enable M56 head mounted sight's far sight system.
</details>


# Changelog
spellcheck: Tweaked message when using the M56 far sight system
  • Loading branch information
AndroBetel authored Oct 21, 2023
1 parent c61e36b commit 13f7305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/clothing/glasses/night.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
if(target)
var/obj/item/clothing/glasses/night/m56_goggles/G = target
G.set_far_sight(owner, !G.far_sight)
to_chat(owner, SPAN_NOTICE("You [G.far_sight ? "enable" : "disable"] \the [src]'s far sight system."))
to_chat(owner, SPAN_NOTICE("You [G.far_sight ? "enable" : "disable"] \the [G]'s far sight system."))

/datum/action/item_action/m56_goggles/far_sight/update_button_icon()
if(!target)
Expand Down

0 comments on commit 13f7305

Please sign in to comment.