diff --git a/src/AI/AutomaticMovement.py b/src/AI/AutomaticMovement.py index d473df0..761d3ee 100644 --- a/src/AI/AutomaticMovement.py +++ b/src/AI/AutomaticMovement.py @@ -110,6 +110,7 @@ class AutomaticMovement: class node: - def __init__(self, parent, action): + def __init__(self, parent, action, coords): + self.coords = coords self.parent = parent - self.action = action + self.action = action \ No newline at end of file