Fixed debug text

This commit is contained in:
Marcin Kostrzewski 2020-05-15 08:54:05 +02:00
parent 4fff56bd7d
commit dae94576e7

View File

@ -129,7 +129,7 @@ def aStar(movable: Entity, target, map):
:return: Array of moves
"""
testCount = 0
print("Couldn't find path to x:", target.x, " y:", target.y, end='...\n')
print("Finding path to x:", target.x, " y:", target.y, end='...\n')
fringe = PriorityQueue()
explored = []