Formatting improvements and fixes

This commit is contained in:
Lewin Kelly 2024-02-03 23:53:37 +00:00
parent c7b816f4d0
commit 87845e5e97
2 changed files with 2 additions and 3 deletions

View File

@ -84,9 +84,8 @@ local function unpackType(value: any, typeString: string): { number }
return { value.X, value.Y, value.Z }
elseif typeString == "Vector3int16" then
return { value.X, value.Y, value.Z }
else
return {}
end
return {}
end
return unpackType

View File

@ -1,6 +1,6 @@
--!strict
--[[
Returns true if A and B are 'similar' - i.e. any user of A would not need
Returns true if A and B are 'similar' - ie. any user of A would not need
to recompute if it changed to B.
]]