fix height check

This commit is contained in:
Csoki
2022-11-24 23:59:31 +01:00
parent 38cfcb0a71
commit d417c92832
+1 -1
View File
@@ -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)