diff --git a/WarmlyShip/WarmlyShip/ShipsGenericCollection.cs b/WarmlyShip/WarmlyShip/ShipsGenericCollection.cs index 719891b..6f41081 100644 --- a/WarmlyShip/WarmlyShip/ShipsGenericCollection.cs +++ b/WarmlyShip/WarmlyShip/ShipsGenericCollection.cs @@ -131,6 +131,8 @@ namespace WarmlyShip.Generics if (ship != null) { int width = _pictureWidth / _placeSizeWidth; + ship._pictureWidth = _pictureWidth; + ship._pictureHeight = _pictureHeight; ship.SetPosition((width - 1 - (i % width)) * _placeSizeWidth, i / width * _placeSizeHeight); ship.DrawTransport(g); }