фиксы

This commit is contained in:
just1valery 2022-11-10 14:50:20 +04:00
parent 41d3c491a8
commit 6f7fc52f5d

View File

@ -167,11 +167,11 @@ namespace WarmlyShip
int pos = Convert.ToInt32(maskedTextBoxPosition.Text);
try
{
var deletedAirplane = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos;
if (deletedAirplane != null)
var deletedShip = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty] - pos;
if (deletedShip != null)
{
MessageBox.Show("Объект удален");
_logger.LogInformation("Из текущей карты удален объект {@Airplane}", deletedAirplane);
_logger.LogInformation("Из текущей карты удален объект {@ship}", deletedShip);
pictureBox.Image = _mapsCollection[listBoxMaps.SelectedItem?.ToString() ?? string.Empty].ShowSet();
}
else