mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 18:58:54 +00:00
fix height check
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user