Calls parent

This commit is contained in:
MarcellusPye
2018-02-20 19:38:55 +13:00
parent 4a963b796d
commit 8235d8ec89
2 changed files with 2 additions and 1 deletions
@@ -287,6 +287,7 @@
// Do species-specific reagent handling here
// Return 1 if it should do normal processing too
// (It's better form to return ..() when processing normally if you're using it as a child proc) - Marcellus
// Return 0 if it shouldn't deplete and do its normal effect
// Other return values will cause weird badness
/datum/species/proc/handle_reagents(mob/living/carbon/human/H, datum/reagent/R)
@@ -748,7 +748,7 @@
if(R.id == "sacid")
H.reagents.del_reagent(R.id)
return 0
return 1
return ..()
/datum/species/diona
name = "Diona"