diff --git a/[esx]/esx_identity/server/main.lua b/[esx]/esx_identity/server/main.lua index dfea3ab2..efca013f 100644 --- a/[esx]/esx_identity/server/main.lua +++ b/[esx]/esx_identity/server/main.lua @@ -104,7 +104,7 @@ end local function checkHeightFormat(height) local numHeight = tonumber(height) - return numHeight < Config.MinHeight and numHeight > Config.MaxHeight + return numHeight >= Config.MinHeight and numHeight <= Config.MaxHeight end local function convertToLowerCase(str)