Fix: order in sunflower

This commit is contained in:
2025-11-10 03:58:52 +08:00
parent 47d25d1831
commit fe142bae33
2 changed files with 3 additions and 4 deletions

View File

@@ -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))