diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-01-21 21:32:00 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-01-21 21:32:00 +0100 |
commit | e1f34249ebacb3098c9da8c21ef47cfc93ac812c (patch) | |
tree | 9532af32f30d428f6c7d7269858755c6a88c9edd /scene/3d/collision_object.cpp | |
parent | 8daf5491ab6bc60434e4d952830bdd258eaf0e53 (diff) | |
download | redot-engine-e1f34249ebacb3098c9da8c21ef47cfc93ac812c.tar.gz |
Fix typo in CollisionObject warning
Diffstat (limited to 'scene/3d/collision_object.cpp')
-rw-r--r-- | scene/3d/collision_object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/collision_object.cpp b/scene/3d/collision_object.cpp index 73770a2dd2..07235b3da4 100644 --- a/scene/3d/collision_object.cpp +++ b/scene/3d/collision_object.cpp @@ -373,7 +373,7 @@ String CollisionObject::get_configuration_warning() const { if (warning == String()) { warning += "\n"; } - warning += TTR("This node has no children shapes, so it can't interact with the space.\nConsider adding CollisionShape or CollisionPolygon children nodes to define it's shape."); + warning += TTR("This node has no children shapes, so it can't interact with the space.\nConsider adding CollisionShape or CollisionPolygon children nodes to define its shape."); } return warning; |