Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rxup committed Feb 6, 2025
1 parent 7f298c7 commit 9154d76
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ private void DiseaseCyborgConversion(Entity<DiseaseCarrierComponent> ent,
}

var repairableComponent = EnsureComp<RepairableComponent>(ent);
repairableComponent.AllowSelfRepair = true;
repairableComponent.SelfRepairPenalty = 0.45f;
repairableComponent.FuelCost = 10;
repairableComponent.AllowSelfRepair = false;
repairableComponent.SelfRepairPenalty = 3f;
repairableComponent.FuelCost = 50;
repairableComponent.DoAfterDelay = 8;

_disease.CureDisease(ent, args.Disease);
Expand All @@ -63,6 +63,7 @@ private void DiseaseCyborgConversion(Entity<DiseaseCarrierComponent> ent,
}
}

_appearanceSystem.AddMarking(ent, "LongEarsWide", Color.Red, true, true, appearanceComponent);
_appearanceSystem.AddMarking(ent, "MothAntennasFeathery", Color.Red, true, true, appearanceComponent);
_appearanceSystem.AddMarking(ent, "TailSuccubus", Color.Red, true, true, appearanceComponent);
appearanceComponent.Age = 1;
Expand Down
1 change: 1 addition & 0 deletions Resources/migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -730,3 +730,4 @@ FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce
#WeaponSubMachineGunVector: null
#WeaponSubMachineGunVectorRubber: null
MagazineBoxCaselessRifleBig: MagazineBoxCaselessRifle
MagazineBoxAntiMaterielBig: MagazineBoxAntiMateriel

0 comments on commit 9154d76

Please sign in to comment.