Исправлена ошибка с добавлением / удалением самолетов
This commit is contained in:
parent
ca0967fdce
commit
a20390f707
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user