Added working tourniquet for left side

This commit is contained in:
Pao
2023-02-06 14:13:44 +01:00
parent 1545c88a19
commit 9633be4fc5
7 changed files with 111 additions and 12 deletions

View File

@@ -109,3 +109,13 @@ function TocGetSawInInventory(surgeon)
player_inv:getItemFromType("Chainsaw")
return item
end
function TocGetSideFromPartName(part_name)
if string.find(part_name, "Left") then
return "Left"
else
return "Right"
end
end