From 9bd54fbe2f339cbf6c06e82ce181f1d42de17269 Mon Sep 17 00:00:00 2001 From: annabunches Date: Wed, 27 Sep 2023 03:25:13 -0400 Subject: [PATCH] Remove comment. --- ball.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/ball.lua b/ball.lua index f916929..95fe668 100644 --- a/ball.lua +++ b/ball.lua @@ -4,8 +4,6 @@ class("Ball").extends(Pixie) function Ball:init(width, height, color, x, y) Ball.super.init(self, width, height, color, x, y) - -- trying to use a table / array for the direction vector doesn't work for bizarre reasons... - -- it fails on the init() call at runtime. self.dirX = -1 self.dirY = 1 self.speed = 3