diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:38:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 11:38:52 -0400 |
commit | 71a7b3f2654778254c93c58e8ca639de7db80521 (patch) | |
tree | 4f31cdb1d5d22ed51c4b66bb6d0658fe2cb7bf89 | |
parent | 5fa8ec8586e3c9087fd68129e1b7d7f94e847a09 (diff) |
remove lua puts call
-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) |