Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
Error found in Round.cs
SOLUTION:
public List<int> GetUraDoraPointerList()
{
List<int> DoraList = new List<int>();
// Tiles in wall:
// 4,6,8,10 - ura pointer
for (int i = 0; i < DoraCount; i++)
{
int DoraPointer = Wall.Tiles[4 + i * 2];
int DoraType = new Tile(DoraPointer).TileId + 1;
DoraList.Add(DoraPointer);
}
return DoraList;
}
Original comment by krishmar...@gmail.com
on 12 Feb 2015 at 5:30
Attachments:
Thanks! Fixed!
Original comment by yateplof...@yandex.ru
on 18 Feb 2015 at 11:49
Original issue reported on code.google.com by
krishmar...@gmail.com
on 12 Feb 2015 at 5:02