Fixes incorrectly passed arguments to demoralise poster signal handler (#70887)

## About The Pull Request

First argument is the source of the signal. This caused runtimes where
it tried to check a poster's mind.

## Why It's Good For The Game

Less runtimes

## Changelog

🆑 Melbert
fix: Triggering a traitor poster trap progresses their objective. 
/🆑
This commit is contained in:
MrMelbert
2022-11-04 01:08:54 -07:00
committed by GitHub
parent 068482fb3c
commit e589b9e27f
@@ -59,7 +59,7 @@
* Arguments
* * victim - A mob who just got something stuck in their hand.
*/
/datum/traitor_objective/demoralise/poster/proc/on_triggered_trap(mob/victim)
/datum/traitor_objective/demoralise/poster/proc/on_triggered_trap(datum/source, mob/victim)
SIGNAL_HANDLER
on_mood_event(victim.mind)