mirror of
https://github.com/dancojocaru2000/ai-project-idastar.git
synced 2025-02-23 00:49:34 +02:00
Fix bug lol (again)
This commit is contained in:
parent
33d3b77d53
commit
8bbfbc837f
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ algoBoard.AlgorithmStep += (_) => {
|
|||
step++;
|
||||
if(done){
|
||||
System.Console.WriteLine("The solved labyrinth is:");
|
||||
}else if(step/2 == 0) {
|
||||
}else if(step%2 == 0) {
|
||||
System.Console.WriteLine("Computing [· ]");
|
||||
}else {
|
||||
System.Console.WriteLine("Computing [ ·]");
|
||||
|
|
Loading…
Add table
Reference in a new issue