Skip to content
Snippets Groups Projects
Commit 50d09586 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix2' into 'pregmod-master'

fix health damage

See merge request pregmodfan/fc-pregmod!5638
parents d88b64a0 db806a73
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ App.Medicine.OrganFarm.implant = function(slave, type, actionIndex) { ...@@ -133,7 +133,7 @@ App.Medicine.OrganFarm.implant = function(slave, type, actionIndex) {
const A = App.Medicine.OrganFarm.Organs[type].implantActions[actionIndex]; const A = App.Medicine.OrganFarm.Organs[type].implantActions[actionIndex];
A.implant(slave); A.implant(slave);
slave.health -= A.healthImpact; healthDamage(slave, A.healthImpact);
if (V.organFarmUpgrade >= 2) { if (V.organFarmUpgrade >= 2) {
slave.chem -= 20; slave.chem -= 20;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment