Remove redundant cleanup of /atom/var/reagents

* /datum/reagents/Destroy() does everything /datum/reagents/delete() does and more, and delete() is called only from /obj/effect/Destroy() which is *itself* redundant with its parent /atom/movable/Destroy()
This commit is contained in:
Leshana
2017-06-05 22:10:07 -04:00
parent d4ebcac3f6
commit 733f69a474
2 changed files with 0 additions and 11 deletions
@@ -79,12 +79,6 @@
total_volume += R.volume
return
/datum/reagents/proc/delete()
for(var/datum/reagent/R in reagent_list)
R.holder = null
if(my_atom)
my_atom.reagents = null
/datum/reagents/proc/handle_reactions()
if(chemistryProcess)
chemistryProcess.mark_for_update(src)