diff --git a/WarmlyShip/WarmlyShip/FormClass.cs b/WarmlyShip/WarmlyShip/FormClass.cs index 23e86ce..abaae2a 100644 --- a/WarmlyShip/WarmlyShip/FormClass.cs +++ b/WarmlyShip/WarmlyShip/FormClass.cs @@ -22,7 +22,7 @@ namespace WarmlyShip Random random = new Random(); _warmlyShip = new DrawingWarmlyShip(); _warmlyShip.Init(random.Next(100, 300), random.Next(1000, 3000), Color.FromArgb(random.Next(0, 256), random.Next(0, 256), random.Next(0, 256))); - _warmlyShip.SetPosition(random.Next(pictureBox.Width - 150, pictureBox.Width - 125), random.Next(pictureBox.Height - 150, pictureBox.Height - 50), pictureBox.Width, pictureBox.Height); + _warmlyShip.SetPosition(random.Next(10, 100), random.Next(10, 100), pictureBox.Width, pictureBox.Height); toolStripStatusSpeed.Text = $"Скорость: {_warmlyShip.warmlyShip?.Speed}"; toolStripStatusWeight.Text = $"Вес: {_warmlyShip.warmlyShip?.Weight}"; toolStripStatusLabelBodyColor.Text = $"Цвет: {_warmlyShip.warmlyShip?.BodyColor}";