Create 2.harvest.py

This commit is contained in:
DearSky
2025-10-16 12:51:42 +08:00
committed by GitHub
parent 90fe743eb9
commit 7d65d42c9c

11
2.harvest.py Normal file
View File

@@ -0,0 +1,11 @@
'''
while True:
harvest()
#do_a_flip()
'''
while True:
if can_harvest():
harvest()
else:
do_a_flip()