From 678fc91cf6176d465a0d444b5b7513c62b6b3945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erkki=20Sepp=C3=A4l=C3=A4?= Date: Tue, 21 Oct 2014 21:01:30 +0300 Subject: [PATCH] level: start players at different heights --- level.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level.lua b/level.lua index a04f57e..559142a 100644 --- a/level.lua +++ b/level.lua @@ -26,7 +26,7 @@ Level = Class{ love.graphics.setCanvas() self.makePlanes = { [1] = function() - return Plane(100, 300, INITIAL_PLANE_SPEED, 0, + return Plane(100, 400, INITIAL_PLANE_SPEED, 0, 255, 0, 0, -- red self) end,