Fix: order in sunflower
This commit is contained in:
@@ -24,7 +24,7 @@ def grow(xl, yl, n):
|
||||
|
||||
while len(check):
|
||||
nxt = list()
|
||||
for x, y in check:
|
||||
for x, y in check[::-1]:
|
||||
utils.mv(x, y)
|
||||
if not can_harvest():
|
||||
nxt.append((x, y))
|
||||
|
||||
Reference in New Issue
Block a user