1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-03 14:53:01 +02:00

travis linting

This commit is contained in:
grilledham 2019-09-28 14:31:19 +01:00
parent 781cd11178
commit ea7c027495

View File

@ -4,7 +4,7 @@ local rad = math.rad
-- x and y must be even numbers else rail grid is misaligned.
local spawn_position = {x = 20, y = 20}
local function is_not_water_tile(x, y, world)
local function is_not_water_tile(_, _, world)
local gen_tile = world.surface.get_tile(world.x, world.y)
return not gen_tile.collides_with('water-tile')
end