Added missing checks

This commit is contained in:
Pao
2023-01-15 04:26:56 +01:00
parent b5741cc059
commit 80725cf56d
3 changed files with 14 additions and 13 deletions

View File

@@ -5,11 +5,20 @@ if TheOnlyCure == nil then
end
function CheckIfCanBeCut(part_name)
-- This is just for MP handling... Not enough to check everything
return not getPlayer():getModData().TOC[part_name].is_cut
end
function CheckIfProsthesisAlreadyInstalled(toc_data, part_name)
local r = "Right"
local l = "Left"
return (string.find(part_name, r) and not (toc_data[r .. "Hand"].is_prosthesis_equipped or toc_data[r .. "Forearm"].is_prosthesis_equipped)) or
(string.find(part_name, l) and not (toc_data[l .. "Hand"].is_prosthesis_equipped or toc_data[l .. "Forearm"].is_prosthesis_equipped))
end
function CheckIfCanBeOperated(part_name)