some sneaky semicolons

This commit is contained in:
Mikayla Fischler
2022-10-20 13:59:35 -04:00
parent 788fae44aa
commit 93286174d4
3 changed files with 17 additions and 17 deletions

View File

@@ -222,7 +222,7 @@ end
---@param color integer
---@return boolean valid
function rsio.is_color(color)
return util.is_int(color) and (color > 0) and (_B_AND(color, (color - 1)) == 0);
return util.is_int(color) and (color > 0) and (_B_AND(color, (color - 1)) == 0)
end
-----------------