mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user