fix cute typo

This commit is contained in:
lustlion 2022-03-04 21:05:08 +01:00
parent 5643fc0140
commit c978855711

View File

@ -70,7 +70,7 @@ function Collision:PlaceAt(x, y)
end
function Collision:ContainsPoint(x, y)
return x => self.from.x and
return x >= self.from.x and
y >= self.from.y and
x <= self.to.x and
y <= self.to.y