From 3b5328241bcf4ffe21b6809a976ee242a0fbbcf9 Mon Sep 17 00:00:00 2001 From: Adngel Date: Sat, 4 Feb 2023 12:28:44 +0100 Subject: [PATCH] Changes in lua GetSet ItemFlags description --- .../Internal/TEN/Objects/Moveable/MoveableObject.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TombEngine/Scripting/Internal/TEN/Objects/Moveable/MoveableObject.cpp b/TombEngine/Scripting/Internal/TEN/Objects/Moveable/MoveableObject.cpp index bf263e75b..f06e1ac14 100644 --- a/TombEngine/Scripting/Internal/TEN/Objects/Moveable/MoveableObject.cpp +++ b/TombEngine/Scripting/Internal/TEN/Objects/Moveable/MoveableObject.cpp @@ -299,14 +299,14 @@ ScriptReserved_GetSlotHP, & Moveable::GetSlotHP, /// Get the value stored in ItemFlags[index] // @function Moveable:GetItemFlags -// @tparam index: (short) index the ItemFlags, can be between 0 and 7. -// @treturn (short) the value contained in the ItemFlags[index] +// @tparam int index of the ItemFlags, can be between 0 and 7. +// @treturn int the value contained in the ItemFlags[index] ScriptReserved_GetItemFlags, & Moveable::GetItemFlags, /// Stores a value in ItemFlags[index] // @function Moveable:SetItemFlags -// @tparam value: (short) value to store in the moveable's ItemFlags[index] -// @tparam index: (short) index of the ItemFlags where store the value. +// @tparam short value to store in the moveable's ItemFlags[index] +// @tparam int index of the ItemFlags where store the value. ScriptReserved_SetItemFlags, & Moveable::SetItemFlags, ScriptReserved_GetLocationAI, & Moveable::GetLocationAI,