Files
The-Only-Cure/media/lua/client/TOC/CommonMethods.lua
2023-11-16 01:42:56 +01:00

10 lines
259 B
Lua

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