From 39d3cce714ec38abc2308f57997d6eb1803d3e2e Mon Sep 17 00:00:00 2001 From: Nichlas Pihl Date: Sun, 15 Sep 2019 07:58:08 +0100 Subject: [PATCH] Fixes a runtime (#46432) --- code/modules/mob/living/carbon/human/species.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index bf50f605ca2..4bd3113a609 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1166,7 +1166,7 @@ GLOBAL_LIST_EMPTY(roundstart_races) . += hungry / 50 else if(isethereal(H)) var/datum/species/ethereal/E = H.dna.species - var/charge = E.get_charge() + var/charge = E.get_charge(H) if(charge <= ETHEREAL_CHARGE_NORMAL) . += 1.5 * (1 - charge / 100)