Исправлена ошибка с добавлением / удалением самолетов

This commit is contained in:
Данияр Аглиуллов 2022-10-13 15:00:02 +04:00
parent ca0967fdce
commit a20390f707

View File

@ -23,7 +23,7 @@ namespace AirBomber
/// <param name="airplane">самолет.</param>
private void AddAirplaneInMap(DrawningObject airplane)
{
if (airplane == null || !(_mapAirplanesCollectionGeneric + airplane))
if (airplane == null || (_mapAirplanesCollectionGeneric + airplane) == -1)
{
MessageBox.Show("Не удалось добавить объект");
}
@ -186,7 +186,7 @@ namespace AirBomber
return;
}
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
if (_mapAirplanesCollectionGeneric - pos)
if (_mapAirplanesCollectionGeneric - pos != null)
{
MessageBox.Show("Объект удален");
pictureBox.Image = _mapAirplanesCollectionGeneric.ShowSet();