Stop singularities from consuming themselves (#58987)

This bug was fixed by one of the connect_loc PRs, but this is still useful as it contains a CRASH for when it happens if this bug comes back again.
This commit is contained in:
Mothblocks
2021-05-14 20:12:46 -07:00
committed by GitHub
parent 8d1c6c9bca
commit bcaaa65e6a
2 changed files with 5 additions and 0 deletions

View File

@@ -130,6 +130,10 @@
return COMPONENT_CANCEL_BLOB_ACT
/datum/component/singularity/proc/consume(datum/source, atom/thing)
if (thing == parent)
stack_trace("Singularity tried to consume itself.")
return
consume_callback?.Invoke(thing, src)
/datum/component/singularity/proc/consume_attack(datum/source, mob/user)