diff options
-rw-r--r-- | Scripts/init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Scripts/init.lua b/Scripts/init.lua index cdd6ccb..ec9e350 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -8,7 +8,8 @@ player = { self.Render.flipx = true; end, MoveLeftReleased = function(self) - game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?") + -- TODO can't put text at world coordinates right now + --game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?") self.Velocity.x = self.Velocity.x + 3.0 end, MoveRightPressed = function(self) |