Somes fixes, blood on limbs\prosthetics, new textures

This commit is contained in:
Pao
2023-01-17 22:29:31 +01:00
parent 0d840baeff
commit 8656bd5696
7 changed files with 108 additions and 31 deletions

View File

@@ -113,6 +113,11 @@ end
-- end
-- TODO override equip action
local og_ISUnequipActionPerform = ISUnequipAction.perform
function ISUnequipAction:perform()
@@ -126,12 +131,17 @@ function ISUnequipAction:perform()
-- -- end
-- -- end
if not CheckIfItemIsAmputatedLimb(self.item) then
if CheckIfItemIsAmputatedLimb(self.item) == false and CheckIfItemIsInstalledProsthesis(self.item) == false then
og_ISUnequipActionPerform(self)
end
-- if not CheckIfItemIsAmputatedLimb(self.item) then
-- og_ISUnequipActionPerform(self)
-- end
-- if CheckIfItemIsInstalledProsthesis(self.item) then
-- og_ISUnequipActionPerform(self)
-- end
end
@@ -140,11 +150,14 @@ local og_ISDropItemActionPerform = ISDropItemAction.perform
function ISDropItemAction:perform()
if not CheckIfItemIsAmputatedLimb(self.item) then
if not CheckIfItemIsAmputatedLimb(self.item)then
og_ISDropItemActionPerform(self)
end
end
-- TODO Add "Clean Wound" to make the cicatrization faster