Ver Fonte

:sparkles: Fix a smell about unused argument

DricomDragon há 2 anos atrás
pai
commit
97a6621c52
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      godot/Player.gd

+ 1 - 1
godot/Player.gd

@@ -50,7 +50,7 @@ func _input(event):
 		target_reached = false
 
 
-func _on_Player_body_entered(body):
+func _on_Player_body_entered(_body):
 	die()
 	emit_signal("hit")
 	$CollisionShape2D.set_deferred("disabled", true)