Files
The-Only-Cure/media/lua/client/TOC_Common.lua
2023-11-07 17:21:03 +01:00

10 lines
257 B
Lua

local CommonMethods = {}
---Returns the side for a certain limb
---@param limbName string
---@return string "L" or "R"
function CommonMethods.GetSide(limbName)
if string.find(limbName, "_L") then return "L" else return "R" end
end
return CommonMethods