More stuff that needed to be changed

This commit is contained in:
Pao
2023-01-18 03:26:33 +01:00
parent a795a01c19
commit c6d4aaa9c4
40 changed files with 17 additions and 5 deletions

View File

@@ -16,14 +16,26 @@ function TheOnlyCure.InitTheOnlyCure(_, player)
local mod_data = player:getModData()
if mod_data.TOC == nil then
mod_data.TOC = {}
print("TOC: Creating mod_data.TOC")
mod_data.TOC = {
Limbs = {
Right_Hand = {},
Right_LowerArm = {},
Right_UpperArm = {},
Left_Hand = {},
Left_LowerArm = {},
Left_UpperArm = {},
is_other_bodypart_infected = false
},
Prosthesis = {},
Prosthesis = {
WoodenHook = {},
MetalHook = {},
MetalHand = {}
},
Generic = {},
}
--------