Some more fixes

This commit is contained in:
Pao
2023-02-26 23:15:06 +01:00
parent 8de5e17cd0
commit ba11ff2314
2 changed files with 2 additions and 2 deletions

View File

@@ -155,7 +155,7 @@ JCIO.CutLimb = function(partName, surgeonFactor, bandageTable, painkillerTable)
local jcioModData = player:getModData().JCIO
local partsParameters = jcioModData.limbParameters
local limbsData = jcioModData.Limbs
local limbsData = jcioModData.limbs
-- Cut Hand -> Damage in forearm

View File

@@ -79,7 +79,7 @@ function JCIO.UnequipProsthesis(patient, partName, equippedProsthesis)
patient:setWornItem(equippedProsthesis:getBodyLocation(), nil)
patient:getInventory():Remove(equippedProsthesis)
jcioModData.Limbs[partName].equipped_prosthesis = nil
jcioModData.limbs[partName].equippedProsthesis = nil
end
end
end