Fixes missing args in a few procs registered to COMSIG_LIVING_ELECTROCUTE_ACT (#81807)

## About The Pull Request

That's it really. 


![image](https://github.com/tgstation/tgstation/assets/13398309/08bd4dd7-b5e7-4c22-91b7-1dadf5776508)

It's supposed to have a `shock_source` arg, but 2/3 of the procs that
are registered to this signal don't include that in their args list.

## Why It's Good For The Game

Out of order positional args = bad.

## Changelog

Nothing player facing (probably)
This commit is contained in:
Bloop
2024-03-04 21:11:15 -05:00
committed by GitHub
parent 45b4179cd4
commit b3443099b0
2 changed files with 2 additions and 2 deletions
@@ -184,7 +184,7 @@
parent.cell.give(amount)
/obj/item/circuit_component/bci_core/proc/on_electrocute(datum/source, shock_damage, siemens_coefficient, flags)
/obj/item/circuit_component/bci_core/proc/on_electrocute(datum/source, shock_damage, shock_source, siemens_coefficient, flags)
SIGNAL_HANDLER
if (isnull(parent.cell))