Initialization and some other stuff done

This commit is contained in:
Pao
2023-02-26 19:22:35 +01:00
parent 65697cff04
commit 56f43a658d
10 changed files with 218 additions and 205 deletions

View File

@@ -33,7 +33,14 @@ end
ServerCommands.CutLimb = function(arg)
local data = arg["toSend"]
TocCutLimb(data[1], data[2], data[3], data[4])
local partName = data[1]
local surgeonFactor = data[2]
local bandageTable = data[3]
local painkillerTable = data[4]
JCIO.CutLimb(partName, surgeonFactor, bandageTable, painkillerTable)
end