Missed isIgnoredPartInfected for HealthFullBody

This commit is contained in:
ZioPao
2024-05-02 12:51:46 +02:00
parent 5dc328ebc2
commit 9a22e816f0
2 changed files with 6 additions and 2 deletions

View File

@@ -70,6 +70,8 @@ function ISHealthPanel.onCheatCurrentPlayer(bodyPart, action, player)
dcInst:setIsInfected(limbName, false) dcInst:setIsInfected(limbName, false)
end end
dcInst:setIsIgnoredPartInfected(false)
dcInst:apply() dcInst:apply()
end end

View File

@@ -118,10 +118,12 @@ for side, _ in pairs(StaticData.SIDES_IND_STR) do
-- BodyParts stuff -- BodyParts stuff
local bptString = BodyPartType.ToString(BodyPartType[assembledName]:getType()) ---@type BodyPartType
local bptType = BodyPartType[assembledName]
local bptString = BodyPartType.ToString(bptType)
StaticData.LIMBS_TO_BODYLOCS_IND_BPT[assembledName] = BodyPartType[assembledName] StaticData.LIMBS_TO_BODYLOCS_IND_BPT[assembledName] = bptType
StaticData.BODYLOCS_TO_LIMBS_IND_STR[bptString] = assembledName StaticData.BODYLOCS_TO_LIMBS_IND_STR[bptString] = assembledName
-- Dependencies and cicatrization time -- Dependencies and cicatrization time