From da50f944783a5241428112af491001c4d6bf1016 Mon Sep 17 00:00:00 2001 From: Jesus <198890+Jesus05@users.noreply.github.com> Date: Sun, 27 Aug 2023 20:52:28 +0300 Subject: [PATCH] Update 07.killing_player.rst --- getting_started/first_3d_game/07.killing_player.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/first_3d_game/07.killing_player.rst b/getting_started/first_3d_game/07.killing_player.rst index d33b07c957a..db9447bdb05 100644 --- a/getting_started/first_3d_game/07.killing_player.rst +++ b/getting_started/first_3d_game/07.killing_player.rst @@ -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