macias0
macias0
Current: ``` function PosToAbsolute( x, y, tileSize ) return (x - 1) * tileSize, (y - 1) * tileSize end ``` Expected: ``` function PosToAbsolute( x, y, tileSize ) return...
Input: ``` function x:PosToAbsolute( x, y ) return ( x - 1 ) * self.width, ( y - 1 ) * self.height end ``` Output: ``` function x:PosToAbsolute( x, y...
Current output: ``` if variable == some.nested.object and variable2 == another.object or variable == another.object and variable2 == some.nested.object then return end ``` Expected something like that: ``` if variable...