Skip to content

Commit

Permalink
[MIRROR] Fix finger gun chat messages (#853)
Browse files Browse the repository at this point in the history
* Fix finger gun chat messages (#81347)

## About The Pull Request

It should not say "[the guy that you're aiming at] fires their gun"

## Changelog

:cl: Melbert
fix: Fixed Finger Guns giving a misleading chat message
/:cl:

* Fix finger gun chat messages

---------

Co-authored-by: MrMelbert <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Feb 9, 2024
1 parent 107a5d8 commit d9cddef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/modules/spells/spell_types/pointed/finger_guns.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@

/datum/action/cooldown/spell/pointed/projectile/finger_guns/before_cast(atom/cast_on)
. = ..()
invocation = span_notice("<b>[cast_on]</b> fires [cast_on.p_their()] finger gun!")
if(isnull(owner))
invocation = initial(invocation)
else
invocation = span_notice("<b>[owner]</b> fires [owner.p_their()] finger gun!")

0 comments on commit d9cddef

Please sign in to comment.