aboutsummaryrefslogtreecommitdiff
path: root/entities
diff options
context:
space:
mode:
authorIndrajith K L2022-04-14 15:38:09 +0530
committerIndrajith K L2022-04-14 15:38:09 +0530
commit8bf932bf0b2184c1dc11241bb9c84d6c4e420293 (patch)
tree767e73ae7d73e591e313822a34c914754a9ba831 /entities
parentfc44ae1243e21179d759df3b947fc55ca0425534 (diff)
downloadgamedevjs-jam-8bf932bf0b2184c1dc11241bb9c84d6c4e420293.tar.gz
gamedevjs-jam-8bf932bf0b2184c1dc11241bb9c84d6c4e420293.tar.bz2
gamedevjs-jam-8bf932bf0b2184c1dc11241bb9c84d6c4e420293.zip
Fixes an issue with Apples & Tilemap (lol)
Diffstat (limited to 'entities')
-rw-r--r--entities/Player.gd1
1 files changed, 0 insertions, 1 deletions
diff --git a/entities/Player.gd b/entities/Player.gd
index bae5935..5804af8 100644
--- a/entities/Player.gd
+++ b/entities/Player.gd
@@ -24,7 +24,6 @@ func get_input():
if jump and is_on_floor():
jumping = true
velocity.y = jump_speed
- print(health)
if right:
velocity.x += run_speed
facing_right = true