Quellcode durchsuchen

Fix typo in CollisionObject warning

Rémi Verschelde vor 7 Jahren
Ursprung
Commit
e1f34249eb
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      scene/3d/collision_object.cpp

+ 1 - 1
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;