баг фикс 1

This commit is contained in:
Данила Мочалов 2022-11-21 20:29:49 +04:00
parent a7027333d8
commit 155ebec8ff

View File

@ -170,21 +170,20 @@ namespace Locomotive
{
return false;
}
var otherMap = other as AbstractMap;
if (otherMap == null)
if (other == null)
{
return false;
}
if (_width != otherMap._width) return false;
if (_height != otherMap._height) return false;
if (_size_x != otherMap._size_x) return false;
if (_size_y != otherMap._size_y) return false;
if (_width != other._width) return false;
if (_height != other._height) return false;
if (_size_x != other._size_x) return false;
if (_size_y != other._size_y) return false;
for (int i = 0; i < _map.GetLength(0); i++)
{
for (int j = 0; j < _map.GetLength(1); j++)
{
if (_map[i,j] != otherMap._map[i,j]) return false;
if (_map[i,j] != other._map[i,j]) return false;
}
}
return true;