From dae94576e776555ad963ac6a1a946fa6ff489c1f Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Fri, 15 May 2020 08:54:05 +0200 Subject: [PATCH] Fixed debug text --- src/AI/AutomaticMovement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AI/AutomaticMovement.py b/src/AI/AutomaticMovement.py index a093576..dcfaa72 100644 --- a/src/AI/AutomaticMovement.py +++ b/src/AI/AutomaticMovement.py @@ -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 = []