Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion getting_started/first_3d_game/07.killing_player.rst
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ Finally, the longest script, ``Player.gd``:
var collision = get_slide_collision(index)

# If the collision is with ground
if (collision.get_collider() == null):
if collision.get_collider() == null:
continue

# If the collider is with a mob
Expand Down