A lot of stuff

- New textures for hooks
- Fixed bag occlusion
- Prosthesis and amputation won't get holes anymore
- Fixed some models
- Some fixes to the sleeve function
This commit is contained in:
Pao
2023-01-27 21:22:51 +01:00
parent a9267a7afc
commit a3b12a07d9
23 changed files with 39 additions and 3 deletions

View File

@@ -385,6 +385,11 @@ function TheOnlyCure.EquipProsthesis(part_name, prosthesis_base_name)
toc_data.Limbs[part_name].is_prosthesis_equipped = true
toc_data.Limbs[part_name].equipped_prosthesis = toc_data.Prosthesis[prosthesis_base_name][part_name]
if player:isFemale() then
added_prosthesis:getVisual():setTextureChoice(1)
else
added_prosthesis:getVisual():setTextureChoice(0)
end
player:setWornItem(added_prosthesis:getBodyLocation(), added_prosthesis)