Rename coords field to state

This commit is contained in:
Michał Czekański 2020-04-26 00:06:20 +02:00
parent 5af76a1b16
commit b296fbe492

View File

@ -118,7 +118,7 @@ class AutomaticMovement:
class node: class node:
def __init__(self, parent, action, coords): def __init__(self, parent, action, state):
self.coords = coords self.state = state
self.parent = parent self.parent = parent
self.action = action self.action = action