From bea7cc784d10c01436c308d2432e405c38de7f66 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Sat, 14 Oct 2023 14:56:05 +0200 Subject: [PATCH] Make error suggestion less ambiguous --- scene/2d/physics_body_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/2d/physics_body_2d.cpp b/scene/2d/physics_body_2d.cpp index fa947123960d..baa3b0bb9028 100644 --- a/scene/2d/physics_body_2d.cpp +++ b/scene/2d/physics_body_2d.cpp @@ -75,7 +75,7 @@ Ref PhysicsBody2D::_move(const Vector2 &p_motion, bool p_t bool PhysicsBody2D::move_and_collide(const PhysicsServer2D::MotionParameters &p_parameters, PhysicsServer2D::MotionResult &r_result, bool p_test_only, bool p_cancel_sliding) { if (is_only_update_transform_changes_enabled()) { - ERR_PRINT("Move functions do not work together with 'sync to physics' option. Please read the documentation."); + ERR_PRINT("Move functions do not work together with 'sync to physics' option. See the documentation for details."); } bool colliding = PhysicsServer2D::get_singleton()->body_test_motion(get_rid(), p_parameters, &r_result);