- pasted entities are assigned to the main sub (-> entities copypasted from another sub are saved)

- fixed submarinebody attempting to generate a physics body for a sub with no walls if there are some other walls loaded
- MathUtils.GiftWrap doesn't throw an exception if passed an empty list of points
This commit is contained in:
Regalis
2017-03-15 23:59:23 +02:00
parent ede3f1c393
commit 40f5f352f5
3 changed files with 11 additions and 5 deletions
+2
View File
@@ -381,6 +381,8 @@ namespace Barotrauma
public static List<Vector2> GiftWrap(List<Vector2> points)
{
if (points.Count == 0) return points;
Vector2 leftMost = points[0];
foreach (Vector2 point in points)
{