diff --git a/IDAstar.cs b/IDAstar.cs index aa99542..f0c416d 100644 --- a/IDAstar.cs +++ b/IDAstar.cs @@ -204,7 +204,6 @@ namespace IdaStar if (_board[neighbour.Row][neighbour.Column] == CellState.PATH) { _board[neighbour.Row][neighbour.Column] = CellState.EMPTY; } - AlgorithmStep?.Invoke(this, threshold); }