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:
def __init__(self, parent, action, coords):
self.coords = coords
def __init__(self, parent, action, state):
self.state = state
self.parent = parent
self.action = action