Singularity_pull() standartize (#87304)

## About The Pull Request
Previous attempt - https://github.com/tgstation/tgstation/pull/87227

`/atom/proc/singularity_pull(obj/singularity/singularity, current_size)`
has first arg typed, but other procs were just referencing it as a
un-typed variable.

Since args are not standartized AND
`atom/proc/singularity_pull(obj/singularity/singularity, current_size)`
is out-dated, since it can be called by things that has
`/datum/component/singularity` - not just by
`obj/singularity/singularity` - This PR just adds args to every
`proc/singularity_pull()` as follows:
`proc/singularity_pull(atom/singularity, current_size)`

## Why It's Good For The Game
Standartization

## Changelog
No changelog needed
This commit is contained in:
larentoun
2024-10-25 02:08:26 +02:00
committed by GitHub
parent a5dfb1285b
commit 692540a7b9
55 changed files with 64 additions and 64 deletions
+1 -1
View File
@@ -243,7 +243,7 @@ GLOBAL_LIST_EMPTY(total_extraction_beacons)
/obj/effect/extraction_holder/singularity_act()
return
/obj/effect/extraction_holder/singularity_pull()
/obj/effect/extraction_holder/singularity_pull(atom/singularity, current_size)
return
/obj/item/extraction_pack/syndicate
+1 -1
View File
@@ -453,7 +453,7 @@
// but regardless block all relayed moves, because no, you cannot move in the void.
return
/obj/effect/immortality_talisman/singularity_pull()
/obj/effect/immortality_talisman/singularity_pull(atom/singularity, current_size)
return
/obj/effect/immortality_talisman/void
+1 -1
View File
@@ -13,7 +13,7 @@
. = ..()
set_light(set_luminosity, set_cap)
/obj/effect/light_emitter/singularity_pull()
/obj/effect/light_emitter/singularity_pull(atom/singularity, current_size)
return
/obj/effect/light_emitter/singularity_act()