From 25fcc0b510ca766df2af42b3fbe30823cafc3a9e Mon Sep 17 00:00:00 2001 From: BlackMajor Date: Thu, 21 Apr 2022 19:55:03 +1200 Subject: [PATCH] whoops that's the wrong health calc --- .../carbon/human/species/station/protean/protean_blob.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm index 2d8914db47..e86330bc60 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm @@ -124,10 +124,7 @@ //Set the max maxHealth = humanform.getMaxHealth()*2 //HUMANS, and their 'double health', bleh. - //Set us to their health, but, human health ignores robolimbs so we do it 'the hard way' - human_brute = humanform.getActualBruteLoss() - human_burn = humanform.getActualFireLoss() - health = maxHealth - humanform.getOxyLoss() - humanform.getToxLoss() - humanform.getCloneLoss() - human_brute - human_burn + health = maxHealth - humanform.getOxyLoss() - humanform.getToxLoss() - humanform.getCloneLoss() - humanform.getBruteLoss() - humanform.getFireLoss() //Alive, becoming dead if((stat < DEAD) && (health <= 0))